Skip to content

Commit 7a2b763

Browse files
pborreliNyholm
authored andcommitted
Fixed typos (#167)
1 parent d01c53c commit 7a2b763

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

components/client-common.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ It provides methods that give appropriate information based on a given request::
5959
$batchResult = $client->sendRequests($requests);
6060

6161
if ($batchResult->hasResponses()) {
62-
$fooSuccessful = $batchResult->isSuccesful($requests[0]);
62+
$fooSuccessful = $batchResult->isSuccessful($requests[0]);
6363
$updateResponse = $batchResult->getResponseFor($request[1]);
6464
}
6565

integrations/symfony-bundle.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ You can configure your clients with default options. These default values will b
153153
// will be the same as ``httplug.client.my_guzzle5``
154154
$httpClient = $this->container->get('httplug.client');
155155
156-
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:
156+
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:
157157

158158
* ``httplug.factory.curl``
159159
* ``httplug.factory.buzz``

plugins/logger.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ compliant logger::
2929
By default it uses ``Http\Message\Formatter\SimpleFormatter`` to format the request or the response into a string.
3030
You can use any formatter implementing the ``Http\Message\Formatter`` interface::
3131

32-
$formatter = new \My\Formatter\Implemenation();
32+
$formatter = new \My\Formatter\Implementation();
3333

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

0 commit comments

Comments
 (0)