Răsfoiți Sursa

docs: remove capitals and periods from errors

Ilya Maximov 3 ani în urmă
părinte
comite
0be88d20ee

+ 1 - 1
packages/core-macro/src/rsx/component.rs

@@ -200,7 +200,7 @@ impl Parse for ComponentField {
 
         if input.peek(LitStr) && input.peek2(LitStr) {
             let item = input.parse::<LitStr>().unwrap();
-            proc_macro_error::emit_error!(item, "This attribute is missing a trailing comma")
+            proc_macro_error::emit_error!(item, "this attribute is missing a trailing comma")
         }
 
         let content = ContentField::ManExpr(input.parse()?);

+ 6 - 6
packages/core-macro/src/rsx/element.rs

@@ -67,7 +67,7 @@ impl Parse for Element {
                 if content.parse::<Token![,]>().is_err() {
                     proc_macro_error::emit_error!(
                         ident,
-                        "This attribute is missing a trailing comma"
+                        "this attribute is missing a trailing comma"
                     )
                 }
                 continue;
@@ -128,7 +128,7 @@ impl Parse for Element {
                 if content.parse::<Token![,]>().is_err() {
                     proc_macro_error::emit_error!(
                         ident,
-                        "This attribute is missing a trailing comma"
+                        "this attribute is missing a trailing comma"
                     )
                 }
                 continue;
@@ -142,9 +142,9 @@ impl Parse for Element {
                 let ident = content.parse::<LitStr>().unwrap();
                 let name = ident.value();
                 proc_macro_error::emit_error!(
-                    ident, "This attribute `{}` is in the wrong place.", name;
+                    ident, "this attribute `{}` is in the wrong place", name;
                     help =
-"All attribute fields must be placed above children elements.
+"all attribute fields must be placed above children elements
 
                 div {
                    attr: \"...\",  <---- attribute is above children
@@ -157,9 +157,9 @@ impl Parse for Element {
                 let ident = content.parse::<Ident>().unwrap();
                 let name = ident.to_string();
                 proc_macro_error::emit_error!(
-                    ident, "This attribute `{}` is in the wrong place.", name;
+                    ident, "this attribute `{}` is in the wrong place", name;
                     help =
-"All attribute fields must be placed above children elements.
+"all attribute fields must be placed above children elements
 
                 div {
                    attr: \"...\",  <---- attribute is above children

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

@@ -200,7 +200,7 @@ impl Parse for ComponentField {
 
         if input.peek(LitStr) && input.peek2(LitStr) {
             let item = input.parse::<LitStr>().unwrap();
-            proc_macro_error::emit_error!(item, "This attribute is missing a trailing comma")
+            proc_macro_error::emit_error!(item, "this attribute is missing a trailing comma")
         }
 
         let content = ContentField::ManExpr(input.parse()?);

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

@@ -67,7 +67,7 @@ impl Parse for Element {
                 if content.parse::<Token![,]>().is_err() {
                     proc_macro_error::emit_error!(
                         ident,
-                        "This attribute is missing a trailing comma"
+                        "this attribute is missing a trailing comma"
                     )
                 }
                 continue;
@@ -128,7 +128,7 @@ impl Parse for Element {
                 if content.parse::<Token![,]>().is_err() {
                     proc_macro_error::emit_error!(
                         ident,
-                        "This attribute is missing a trailing comma"
+                        "this attribute is missing a trailing comma"
                     )
                 }
                 continue;
@@ -142,9 +142,9 @@ impl Parse for Element {
                 let ident = content.parse::<LitStr>().unwrap();
                 let name = ident.value();
                 proc_macro_error::emit_error!(
-                    ident, "This attribute `{}` is in the wrong place.", name;
+                    ident, "this attribute `{}` is in the wrong place", name;
                     help =
-"All attribute fields must be placed above children elements.
+"all attribute fields must be placed above children elements
 
                 div {
                    attr: \"...\",  <---- attribute is above children
@@ -157,9 +157,9 @@ impl Parse for Element {
                 let ident = content.parse::<Ident>().unwrap();
                 let name = ident.to_string();
                 proc_macro_error::emit_error!(
-                    ident, "This attribute `{}` is in the wrong place.", name;
+                    ident, "this attribute `{}` is in the wrong place", name;
                     help =
-"All attribute fields must be placed above children elements.
+"all attribute fields must be placed above children elements
 
                 div {
                    attr: \"...\",  <---- attribute is above children