From c2b0bc310e3382290cdb06967c1f04680d16b274 Mon Sep 17 00:00:00 2001 From: cui Date: Mon, 16 Feb 2026 15:32:54 +0800 Subject: [PATCH] axum: fix typo in Path extractor error (#3661) --- axum/src/extract/path/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/axum/src/extract/path/mod.rs b/axum/src/extract/path/mod.rs index 44b2a323..f6779a3f 100644 --- a/axum/src/extract/path/mod.rs +++ b/axum/src/extract/path/mod.rs @@ -346,7 +346,7 @@ pub enum ErrorKind { key: String, /// The value that failed to deserialize. value: String, - /// The deserializaation failure message. + /// The deserialization failure message. message: String, },