소스 검색

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()));