From 865abf07d160ed4b7ea6bf19d27887a24205da54 Mon Sep 17 00:00:00 2001 From: tottoto Date: Fri, 27 Feb 2026 10:43:09 +0900 Subject: [PATCH] doc: fix form url encoded header --- src/common/content_type.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/content_type.rs b/src/common/content_type.rs index a47d9e03..7ce194d4 100644 --- a/src/common/content_type.rs +++ b/src/common/content_type.rs @@ -72,7 +72,7 @@ impl ContentType { ContentType(mime::TEXT_XML) } - /// A constructor to easily create a `Content-Type: application/www-form-url-encoded` header. + /// A constructor to easily create a `Content-Type: application/x-www-form-url-encoded` header. #[inline] pub fn form_url_encoded() -> ContentType { ContentType(mime::APPLICATION_WWW_FORM_URLENCODED)