chore: fix typos (#3758)

This commit is contained in:
David Pedersen
2026-05-15 12:32:46 +00:00
committed by GitHub
parent c8276951b0
commit 5bc0046084
25 changed files with 39 additions and 39 deletions
+1 -1
View File
@@ -844,7 +844,7 @@ fn next_is_last_input(item_fn: &ItemFn) -> TokenStream {
let (idx, arg) = &next_args[0];
if *idx != item_fn.sig.inputs.len() - 1 {
return quote_spanned! {arg.span()=>
compile_error!("`axum::middleware::Next` must the last argument");
compile_error!("`axum::middleware::Next` must be the last argument");
};
}
}