Pārlūkot izejas kodu

remove double braces in shorthand children error message

Evan Almloff 1 gadu atpakaļ
vecāks
revīzija
2f387604a8
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      packages/rsx/src/element.rs

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

@@ -278,7 +278,7 @@ impl Element {
                         r#"Shorthand element children are not supported.
 To pass children into elements, wrap them in curly braces.
 Like so:
-    div {{ {{children}} }}
+    div { {children} }
 
 "#,
                     ));