Skip to content

Commit ff4f7bc

Browse files
committed
Update README.md
1 parent bffb9d8 commit ff4f7bc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ enriched with the comfort of [React PHP's Promises/A](https://github.com/reactph
1717
* [Quickstart example](#quickstart-example)
1818
* [Usage](#usage)
1919
* [Client](#client)
20-
* [Processing](#processing)
20+
* [Promises](#promises)
2121
* [search()](#search)
2222
* [get()](#get)
2323
* [all()](#all)
@@ -64,13 +64,13 @@ $browser = new Clue\React\Buzz\Browser($loop);
6464
$client = new Client($browser);
6565
```
6666

67-
If you need custom DNS or proxy settings, you can explicitly pass a
67+
If you need custom DNS, SSL/TLS or proxy settings, you can explicitly pass a
6868
custom [`Browser`](https://github.com/clue/php-buzz-react#browser) instance.
6969

70-
#### Processing
70+
#### Promises
7171

7272
All public methods on the `Client` resemble the API provided by [KnpLab's `packagist-api`](https://github.com/KnpLabs/packagist-api),
73-
except for an async shift in their return values.
73+
except for an async shift in their return values:
7474
Sending requests is async (non-blocking), so you can actually send multiple requests in parallel.
7575
Packagist will respond to each request with a response message, the order is not guaranteed.
7676
Sending requests uses a [Promise](https://github.com/reactphp/promise)-based interface that makes it easy to react to when a request is fulfilled (i.e. either successfully resolved or rejected with an error).

0 commit comments

Comments
 (0)