From de402ceac6a961971dc62ad380ce742bfebb3e78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Eisenberger?= Date: Tue, 6 Feb 2018 20:55:08 +0100 Subject: [PATCH] Minor documentation fix --- src/request.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/request.rs b/src/request.rs index f1ad19e..1d75300 100644 --- a/src/request.rs +++ b/src/request.rs @@ -217,7 +217,7 @@ impl RequestBuilder { /// be called multiple times and that existing query parameters are not /// overwritten if the same key is used. The key will simply show up /// twice in the query string. - /// Calling `.query([("foo", "a"), ("foo", "b")])` gives `"foo=a&boo=b"`. + /// Calling `.query(&[("foo", "a"), ("foo", "b")])` gives `"foo=a&boo=b"`. /// /// ```rust /// # use reqwest::Error;