Skip to content

Commit

Permalink
Merge pull request #11 from SalmanPK/patch-1
Browse files Browse the repository at this point in the history
Fixed 2 instances of wrong exception class name.
  • Loading branch information
mtdowling committed Jul 9, 2012
2 parents 09dcc5c + 28b6143 commit 8593a37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions en/tour/http.rst
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ Sending many HTTP requests serially (one at a time) can cause an unnecessary del

You can pass a single request or an array of requests to a client's ``send()`` method. Here's an example of sending three requests in parallel using a client object::

use Guzzle\Common\ExceptionCollection;
use Guzzle\Common\Exception\ExceptionCollection;

try {
$responses = $client->send(array(
Expand All @@ -318,7 +318,7 @@ You can pass a single request or an array of requests to a client's ``send()`` m
}
}

A single request failure will not cause the entire pool of requests to fail. Any exceptions thrown while transferring a pool of requests will be aggregated into a ``Guzzle\Common\ExceptionCollection`` exception.
A single request failure will not cause the entire pool of requests to fail. Any exceptions thrown while transferring a pool of requests will be aggregated into a ``Guzzle\Common\Exception\ExceptionCollection`` exception.

Managed persistent HTTP connections
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down

0 comments on commit 8593a37

Please sign in to comment.