docs: remove capitals and periods from errors

This commit is contained in:
Ilya Maximov 2022-03-19 19:28:38 +01:00
parent fa91ad6315
commit 0be88d20ee
No known key found for this signature in database
GPG key ID: 1ACCDCC0429C9737
4 changed files with 14 additions and 14 deletions

View file

@ -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()?);

View file

@ -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

View file

@ -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()?);

View file

@ -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