We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8fbbcfc + 51e1622 commit 4801917Copy full SHA for 4801917
src/mime/constants.rs
@@ -141,15 +141,15 @@ pub const BYTE_STREAM: Mime = Mime {
141
/// # Mime Type
142
///
143
/// ```txt
144
-/// application/x-www-urlencoded
+/// application/x-www-form-urlencoded
145
/// ```
146
pub const FORM: Mime = Mime {
147
- static_essence: Some("application/x-www-urlencoded"),
+ static_essence: Some("application/x-www-form-urlencoded"),
148
essence: String::new(),
149
basetype: String::new(),
150
subtype: String::new(),
151
static_basetype: Some("application"),
152
- static_subtype: Some("x-www-urlencoded"),
+ static_subtype: Some("x-www-form-urlencoded"),
153
parameters: None,
154
};
155
0 commit comments