fix typo about x-form-urlencoded doc

This commit is contained in:
KNnut
2018-11-06 03:26:11 +08:00
committed by Sean McArthur
parent 97393143a5
commit 527bcecce6

View File

@@ -344,7 +344,7 @@ impl RequestBuilder {
/// Send a form body.
///
/// Sets the body to the url encoded serialization of the passed value,
/// and also sets the `Content-Type: application/www-form-url-encoded`
/// and also sets the `Content-Type: application/x-www-form-urlencoded`
/// header.
///
/// ```rust