Explorar el Código

fix final test

Jonathan Kelley hace 1 año
padre
commit
593527d58b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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}"})}
         }
     };