Skip to content

Commit ce6ad39

Browse files
authored
Fix a typo (#635)
1 parent f704905 commit ce6ad39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

axum/src/extract/path/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ impl fmt::Display for ErrorKind {
329329
ErrorKind::InvalidUtf8InPathParam { key } => write!(f, "Invalid UTF-8 in `{}`", key),
330330
ErrorKind::WrongNumberOfParameters { got, expected } => write!(
331331
f,
332-
"Wronger number of parameters. Expected {} but got {}",
332+
"Wrong number of parameters. Expected {} but got {}",
333333
expected, got
334334
),
335335
ErrorKind::UnsupportedType { name } => write!(f, "Unsupported type `{}`", name),

0 commit comments

Comments
 (0)