Merge pull request #254 from csirkeee/master

Minor documentation fix
This commit is contained in:
Sean McArthur
2018-02-06 12:24:33 -08:00
committed by GitHub

View File

@@ -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;