This commit is contained in:
ibraheemdev 2021-06-08 10:46:35 -04:00
parent 98c795eadf
commit 6b33dc67ad
2 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ pub fn main(args: TokenStream, item: TokenStream) -> TokenStream {
}
},
_ => {
return syn::Error::new_spanned(arg, "Unkown attribute specified")
return syn::Error::new_spanned(arg, "Unknown attribute specified")
.to_compile_error()
.into();
}

View File

@ -1,4 +1,4 @@
error: Unkown attribute specified
error: Unknown attribute specified
--> $DIR/main-06-unknown-attr.rs:1:18
|
1 | #[actix_rt::main(foo = "bar")]