Skip to content

Commit 03dda17

Browse files
authored
Small doc changes to be consistent with the name AsyncAws (#535)
* Small doc changes to be consistent with the name AsyncAws * Typos * minor
1 parent f0a453a commit 03dda17

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Async AWS client
1+
# AsyncAws client
22

33
If you are one of those people that like the Amazon PHP SDK but hate the fact that you need to download Guzzle, PSR-7 and every AWS API client to use it?
44

docs/compare.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ Read more about [pagination](/features/pagination.md).
143143

144144
AWS allow pre-generating sign url that let user access to a resource
145145
without exposing the key. For instance, provide a link to download an S3 Object.
146-
AsycAWS provides a fancy way to generate such url by reusing the same objects
146+
AsyncAWS provides a fancy way to generate such url by reusing the same objects
147147
used in the standard way.
148148

149149
### AsyncAws
@@ -212,9 +212,9 @@ the official AWS PHP SDK uses magic methods and undocumented array accessor.
212212
| [![AWS PHP SDK input doc](/assets/image/compare/aws-input.png)](/assets/image/compare/aws-input.png) | [![async-aws input doc](/assets/image/compare/aa-input.png)](/assets/image/compare/aa-input.png)
213213
| [![AWS PHP SDK result doc](/assets/image/compare/aws-result.png)](/assets/image/compare/aws-result.png) | [![async-aws result doc](/assets/image/compare/aa-result.png)](/assets/image/compare/aa-result.png)
214214

215-
Like the official AWS PHP SDK, Async Aws supports multi-regions clients. This
215+
Like the official AWS PHP SDK, AsyncAws supports multi-regions clients. This
216216
enables users to specify which AWS Region to call by providing an `@region`
217-
input parameter. But Async Aws don't require to create new objects.
217+
input parameter. But AsyncAws don't require to create new objects.
218218

219219
### AsyncAws
220220

@@ -259,7 +259,7 @@ Read more about [writing tests](/features/tests.md).
259259

260260
## Features coverage
261261

262-
While AsyncAws focused on the most used operations (around 7 services),
262+
While AsyncAws focused on the most used operations (around a dozen services),
263263
The official AWS PHP SDK covers the full scope of AWS (200 services and 8,000
264264
methods).
265265

docs/features/async.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ the remote server again.
139139

140140
The function has a `?float $timeout = null` argument. If the timeout is set to
141141
`2.0`, the HTTP client will wait for 2 seconds for a response. If a response is received,
142-
the function will return `true` or thrown an exception. If the timeout is reached,
142+
the function will return `true` or throw an exception. If the timeout is reached,
143143
it will return `false`.
144144

145145
> **Note:** The call `$result->resolve()` is a blocking call because we are waiting

docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ $input
5959
->setMessageBody('invoiceId: 1337');
6060

6161
// Since the returned value is ignored,
62-
// the HTTP request is sent automatically.
62+
// the HTTP request is sent immediately.
6363
$sqs->sendMessage($input);
6464
```
6565

website/template/base.twig

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
</ul>
5555

5656
<p class="created-by">
57-
Async AWS is created by <br>
57+
AsyncAws is created by <br>
5858
<a href="https://github.com/jderusse">Jérémy Derussé</a>,
5959
<a href="https://github.com/Nyholm">Tobias Nyholm</a> <br>
6060
and <a href="https://github.com/async-aws/aws/graphs/contributors">contributors</a>.

0 commit comments

Comments
 (0)