Skip to content

Commit 16ff283

Browse files
authored
Typo fixes (#2916)
1 parent ea0b4d2 commit 16ff283

7 files changed

+8
-8
lines changed

docs/source/guide/cloud9.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ in the *AWS Cloud9 User Guide*.
3434
Step 2: Create an environment
3535
-----------------------------
3636
After you sign in to the AWS Cloud9 console, use the console to
37-
create an AWS Cloud9 development environment. (A *development environment* is
37+
create an AWS Cloud9 development environment. (A *development environment*
3838
is a place where you store your project's files and where you run the tools
3939
to develop your apps.) After you create
4040
the environment, AWS Cloud9 automatically opens the IDE for that environment.

docs/source/guide/credentials.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ The shared credentials file has a default location of ``~/.aws/credentials``. Yo
9898

9999
This file is an INI formatted file with section names corresponding to profiles. With each section, the three configuration variables shown above can be specified: ``aws_access_key_id``, ``aws_secret_access_key``, ``aws_session_token``. *These are the only supported values in the shared credential file.*
100100

101-
Below is an minimal example of the shared credentials file:
101+
Below is a minimal example of the shared credentials file:
102102

103103
.. code-block:: ini
104104

docs/source/guide/cw-example-subscription-filters.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Prerequisite tasks
5959

6060
Use the following role policy when creating the IAM role.
6161

62-
.. code-block:: python
62+
.. code-block:: python
6363
6464
{
6565
"Version": "2012-10-17",

docs/source/guide/cw-example-using-alarms.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Prerequisite tasks
5454

5555
Use the following role policy when creating the IAM role.
5656

57-
.. code-block:: python
57+
.. code-block:: python
5858
5959
{
6060
"Version": "2012-10-17",

docs/source/guide/events.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Here is an example of how the event system works::
4646

4747
In this example, the handler ``add_my_bucket``
4848
is registered such that the handler will inject the
49-
value ``'mybucket`` for the ``Bucket`` parameter whenever the the
49+
value ``'mybucket`` for the ``Bucket`` parameter whenever the
5050
``list_objects`` client call is made without the ``Bucket`` parameter. Note
5151
that if the same ``list_objects`` call is made without the ``Bucket``
5252
parameter and the registered handler, it will result in a validation error.
@@ -58,7 +58,7 @@ Here are the takeaways from this example:
5858
``meta.events`` attribute on the client.
5959
* All functions registered to the event system must have ``**kwargs`` in
6060
the function signature. This is because emitting an event can have any
61-
number of keyword arguments emitted along side it, and so if your
61+
number of keyword arguments emitted alongside it, and so if your
6262
function is called without ``**kwargs``, its signature will have to
6363
match every keyword argument emitted by the event. This also allows for
6464
more keyword arguments to be added to the emitted event in the future

docs/source/guide/resources.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ exist without a bucket, these are parent to child relationships.
184184

185185
Waiters
186186
-------
187-
A waiter is similiar to an action. A waiter will poll the status of a
187+
A waiter is similar to an action. A waiter will poll the status of a
188188
resource and suspend execution until the resource reaches the state that is
189189
being polled for or a failure occurs while polling.
190190
Waiters automatically set the resource

scripts/new-change

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ You'll see this template::
2929
Fill in the appropriate values, save and exit the editor.
3030
Make sure to commit these changes as part of your pull request.
3131
32-
If, when your editor is open, you decide don't don't want to add a changelog
32+
If, when your editor is open, you decide don't want to add a changelog
3333
entry, save an empty file and no entry will be generated.
3434
3535
You can then use the ``scripts/gen-changelog`` to generate the

0 commit comments

Comments
 (0)