Skip to content

Commit

Permalink
[FIX] Code block in Quickstart documentation (#2268)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredhowland authored and Nyholm committed Feb 26, 2019
1 parent 6c50a62 commit fa74540
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ requests.
$responses = Promise\settle($promises)->wait();
// You can access each response using the key of the promise
echo $responses['image']->getHeader('Content-Length')[0]
echo $responses['png']->getHeader('Content-Length')[0]
echo $responses['image']->getHeader('Content-Length')[0];
echo $responses['png']->getHeader('Content-Length')[0];
You can use the ``GuzzleHttp\Pool`` object when you have an indeterminate
amount of requests you wish to send.
Expand Down

0 comments on commit fa74540

Please sign in to comment.