Skip to content

Commit

Permalink
Don't do dont (async-aws#458)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyholm authored Apr 4, 2020
1 parent 67f90d4 commit f37a654
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/authentication/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ The providers are currently chained in the following order:
## Testing with authentication providers

The default provider chain could be too slow or too complex for testing. It is recommended
to use the `NullProvider` in tests where you dont provide valid configuration values.
to use the `NullProvider` in tests where you don't provide valid configuration values.
2 changes: 1 addition & 1 deletion docs/clients/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class AsyncAwsProvider extends ServiceProvider

### Client factory

If you dont use dependency injection, you might be interested in the `AwsClientFactory`
If you don't use dependency injection, you might be interested in the `AwsClientFactory`
that can be used to instantiate API clients.

```php
Expand Down
2 changes: 1 addition & 1 deletion docs/clients/s3.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ person so they can download a file within the next X minutes. Read more about pr

### Upload file

If you want to upload a 1 Gb file, you really dont want to put that file in memory
If you want to upload a 1 Gb file, you really don't want to put that file in memory
before uploading. You want to use a something smarted. AsyncAws allow you to upload
files using a string, resource, closure or a iterable. See the following examples:

Expand Down
2 changes: 1 addition & 1 deletion docs/contribute/generate.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ test stubs. Below is an example to generate an operation for DynamoDB.
1. Clone the async-aws/aws repository.
1. Run `composer install`
1. Run `./generate DynamoDb` and press "1" for generate a new operation.
1. Select the operation you want to generate. Don't generate operations that you dont need.
1. Select the operation you want to generate. Don't generate operations that you don't need.
1. Use the [AWS Api Reference](https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_Operations.html) to fill the expected Input/Result.

If you started working on a new operation, please submit a "Draft PR" to show your
Expand Down
2 changes: 1 addition & 1 deletion docs/contribute/website.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ to update `./couscous.yml`.
Here are some guidelines that are helpful when writing good documentation:

- Write `AsyncAws` or `async-aws` to refer to the project.
- Dont use "we" at any cost.
- Don't use "we" at any cost.
- Try not to write "you".
- Define all variables to make examples executable.
- Use meaningful names of variables and values. Avoid "foobar" and other dummy values.
Expand Down
2 changes: 1 addition & 1 deletion docs/integration/symfony-bundle.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ async_aws:
region: eu-central-1

clients:
ses: ~ # This will complain if we dont have that package installed
ses: ~ # This will complain if we don't have that package installed
sqs:
config:
region: us-west-1
Expand Down

0 comments on commit f37a654

Please sign in to comment.