Skip to content

Commit 866a5ab

Browse files
committedJun 27, 2023
Update README with some grammar and punctuation suggested by my IDE
1 parent 13c7412 commit 866a5ab

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed
 

‎README.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Decorators
128128
----------
129129

130130
It may be useful to extend the `Request` and `Response` objects in your
131-
application, if you for example would like them to carry a bit more
131+
application, if you, for example, would like them to carry a bit more
132132
information about the current request.
133133

134134
For instance, you may want to add an `isLoggedIn` method to the Request
@@ -144,7 +144,7 @@ Simply extending Request and Response may pose some problems:
144144
`Response` instances in your library or application, you make it harder to
145145
work with other applications which also use `sabre/http`.
146146

147-
In short: it would be bad design. Instead, it's recommended to use the
147+
In short, it would be bad design. Instead, it's recommended to use the
148148
[decorator pattern][6] to add new behavior where you need it. `sabre/http`
149149
provides helper classes to quickly do this.
150150

@@ -177,7 +177,7 @@ all we need to do is:
177177
$request = new MyRequest($request);
178178
```
179179

180-
And that's it, we now have an `isLoggedIn` method, without having to mess
180+
And that's it; we now have an `isLoggedIn` method, without having to mess
181181
with the core instances.
182182

183183

@@ -205,14 +205,14 @@ $response = $client->send($request);
205205
echo $response->getBodyAsString();
206206
```
207207

208-
The client emits 3 event using [`sabre/event`][5]. `beforeRequest`,
208+
The client emits 3 events using [`sabre/event`][5]. `beforeRequest`,
209209
`afterRequest` and `error`.
210210

211211
```php
212212
$client = new HTTP\Client();
213213
$client->on('beforeRequest', function($request) {
214214

215-
// You could use beforeRequest to for example inject a few extra headers.
215+
// You could use beforeRequest to, for example, inject a few extra headers
216216
// into the Request object.
217217

218218
});
@@ -249,7 +249,7 @@ $client->on('error:401', function($request, $response, &$retry, $retryCount) {
249249
### Asynchronous requests
250250

251251
The `Client` also supports doing asynchronous requests. This is especially handy
252-
if you need to perform a number of requests, that are allowed to be executed
252+
if you need to perform a number of requests that are allowed to be executed
253253
in parallel.
254254

255255
The underlying system for this is simply [cURL's multi request handler][8],
@@ -326,8 +326,8 @@ $response = $client->send($subRequest);
326326
Sapi::sendResponse($response);
327327
```
328328

329-
The Request and Response API's
330-
------------------------------
329+
The Request and Response APIs
330+
-----------------------------
331331

332332
### Request
333333

@@ -449,8 +449,8 @@ function getPostData();
449449
*
450450
* This is equivalent to PHP's $_POST superglobal.
451451
*
452-
* This would not have been needed, if POST data was accessible as
453-
* php://input, but unfortunately we need to special case it.
452+
* This would not have been needed if POST data was accessible as
453+
* php://input, but unfortunately we need to special-case it.
454454
*
455455
* @param array $postData
456456
* @return void
@@ -608,7 +608,7 @@ function getStatus();
608608
* Sets the HTTP status code.
609609
*
610610
* This can be either the full HTTP status code with human-readable string,
611-
* for example: "403 I can't let you do that, Dave".
611+
* for example, "403 I can't let you do that, Dave".
612612
*
613613
* Or just the code, in which case the appropriate default message will be
614614
* added.

0 commit comments

Comments
 (0)
Please sign in to comment.