Browse Source

fix final test

Jonathan Kelley 1 year ago
parent
commit
593527d58b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/rsx/src/lib.rs

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

@@ -576,7 +576,7 @@ fn create_template() {
             p {
                 "hello world"
             }
-            (0..10).map(|i| rsx!{"{i}"})
+            {(0..10).map(|i| rsx!{"{i}"})}
         }
     };