소스 검색

remove double braces in shorthand children error message

Evan Almloff 1 년 전
부모
커밋
2f387604a8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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} }
 
 "#,
                     ));