1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-02-24 01:53:58 +01:00

Merge pull request #1489 from t-geindre/patch-1

Fix typo in request-options.rst
This commit is contained in:
Michael Dowling 2016-06-12 16:54:34 -07:00 committed by GitHub
commit a65c2adc7b

View File

@ -745,7 +745,7 @@ query
// Send a GET request to /get?foo=bar
$client->request('GET', '/get', ['query' => ['foo' => 'bar']]);
Query strings specified in the ``query`` option will overwrite an query string
Query strings specified in the ``query`` option will overwrite a query string
values supplied in the URI of a request.
.. code-block:: php