Преглед на файлове

fix try to string in ifmt

Evan Almloff преди 1 година
родител
ревизия
27f8377ea5
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      packages/rsx/src/ifmt.rs

+ 1 - 1
packages/rsx/src/ifmt.rs

@@ -86,7 +86,7 @@ impl IfmtInput {
                         match single_dynamic {
                             Some(current_string) => {
                                 single_dynamic =
-                                    Some(quote!(#current_string + &segment.to_string()));
+                                    Some(quote!(#current_string + &#segment.to_string()));
                             }
                             None => {
                                 single_dynamic = Some(quote!(#segment.to_string()));