From 527bcecce69f217c6c8dd9bcdff02e1ac5f63a97 Mon Sep 17 00:00:00 2001 From: KNnut <9387720+KNnut@users.noreply.github.com> Date: Tue, 6 Nov 2018 03:26:11 +0800 Subject: [PATCH] fix typo about x-form-urlencoded doc --- src/request.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/request.rs b/src/request.rs index 30af213..dcec6c9 100644 --- a/src/request.rs +++ b/src/request.rs @@ -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