Skip to content

Commit a15cfcd

Browse files
bocharsky-bwNyholm
authored andcommitted
Use an article instead of a for HTTP (#2)
* Use an article instead of a for HTTP * One more replace of 'a HTTP' -> 'an HTTP'
1 parent a34b6c5 commit a15cfcd

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ PSR Http Client
44
This repository holds all interfaces/classes/traits related to
55
[PSR-18](http://www.php-fig.org/psr/psr-18/).
66

7-
Note that this is not a HTTP client implementation of its own. It is merely an
8-
interface that describes a HTTP client. See
7+
Note that this is not an HTTP client implementation of its own. It is merely an
8+
interface that describes an HTTP client. See
99
[the specification](https://github.com/php-fig/fig-standards/blob/master/proposed/http-client/http-client.md)
1010
for more details.
1111

1212
You can find implementations of the specification by looking for packages providing
1313
the [psr/simple-cache-implementation](https://packagist.org/providers/psr/http-client-implementation)
14-
virtual package.
14+
virtual package.

src/ClientInterface.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ interface ClientInterface
1010
/**
1111
* Sends a PSR-7 request and returns a PSR-7 response.
1212
*
13-
* Every technically correct HTTP response MUST be returned as is, even if it represents a HTTP
13+
* Every technically correct HTTP response MUST be returned as is, even if it represents an HTTP
1414
* error response or a redirect instruction. The only special case is 1xx responses, which MUST
1515
* be assembled in the HTTP client.
1616
*
@@ -28,4 +28,4 @@ interface ClientInterface
2828
* @throws \Psr\Http\Client\Exception If an error happens during processing the request.
2929
*/
3030
public function sendRequest(RequestInterface $request): ResponseInterface;
31-
}
31+
}

0 commit comments

Comments
 (0)