Skip to content

Fixed typos #167

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 23, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/client-common.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ It provides methods that give appropriate information based on a given request::
$batchResult = $client->sendRequests($requests);

if ($batchResult->hasResponses()) {
$fooSuccessful = $batchResult->isSuccesful($requests[0]);
$fooSuccessful = $batchResult->isSuccessful($requests[0]);
$updateResponse = $batchResult->getResponseFor($request[1]);
}

Expand Down
2 changes: 1 addition & 1 deletion integrations/symfony-bundle.rst
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ You can configure your clients with default options. These default values will b
// will be the same as ``httplug.client.my_guzzle5``
$httpClient = $this->container->get('httplug.client');

The bundle has client factory services that you can use to build your client. If you need a very custom made client you could create your own factory service implementing ``Http\HttplugBudle\ClientFactory\ClientFactory``. The built-in services are:
The bundle has client factory services that you can use to build your client. If you need a very custom made client you could create your own factory service implementing ``Http\HttplugBundle\ClientFactory\ClientFactory``. The built-in services are:

* ``httplug.factory.curl``
* ``httplug.factory.buzz``
Expand Down
2 changes: 1 addition & 1 deletion plugins/logger.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ compliant logger::
By default it uses ``Http\Message\Formatter\SimpleFormatter`` to format the request or the response into a string.
You can use any formatter implementing the ``Http\Message\Formatter`` interface::

$formatter = new \My\Formatter\Implemenation();
$formatter = new \My\Formatter\Implementation();

$loggerPlugin = new LoggerPlugin(new Logger('http'), $formatter);

Expand Down