Skip to content

Commit

Permalink
chore(docs): corrects common typos in various README files (#14363)
Browse files Browse the repository at this point in the history
----
Scope of changes is restricted to docs only. Changes have been made in agreement with Standard American English.

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
plan-do-break-fix authored May 13, 2021
1 parent 2337b5d commit 367f151
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-appmesh/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ App Mesh gives you consistent visibility and network traffic controls for every

App Mesh supports microservice applications that use service discovery naming for their components. To use App Mesh, you must have an existing application running on AWS Fargate, Amazon ECS, Amazon EKS, Kubernetes on AWS, or Amazon EC2.

For futher information on **AWS AppMesh** visit the [AWS Docs for AppMesh](https://docs.aws.amazon.com/app-mesh/index.html).
For further information on **AWS AppMesh** visit the [AWS Docs for AppMesh](https://docs.aws.amazon.com/app-mesh/index.html).

## Create the App and Stack

Expand Down
6 changes: 3 additions & 3 deletions packages/@aws-cdk/aws-appsync/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,7 @@ You can create Object Types in three ways:
name: 'demo',
});
const demo = new appsync.ObjectType('Demo', {
defintion: {
definition: {
id: appsync.GraphqlType.string({ isRequired: true }),
version: appsync.GraphqlType.string({ isRequired: true }),
},
Expand All @@ -782,7 +782,7 @@ You can create Object Types in three ways:
```ts
import { required_string } from './scalar-types';
export const demo = new appsync.ObjectType('Demo', {
defintion: {
definition: {
id: required_string,
version: required_string,
},
Expand All @@ -806,7 +806,7 @@ You can create Object Types in three ways:
});
const demo = new appsync.ObjectType('Demo', {
interfaceTypes: [ node ],
defintion: {
definition: {
version: appsync.GraphqlType.string({ isRequired: true }),
},
});
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-eks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ const cluster = new eks.Cluster(this, 'MyCluster', {
});
```

You can also use a similiar configuration for running a cluster built using the FargateCluster construct.
You can also use a similar configuration for running a cluster built using the FargateCluster construct.

```ts
const secretsKey = new kms.Key(this, 'SecretsKey');
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-s3-deployment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Configuring this has a few implications you should be aware of:
- **Destination Changes**

When the destination bucket or prefix is changed, all files in the previous destination will **first** be
deleted and then uploaded to the new destination location. This could have availablity implications
deleted and then uploaded to the new destination location. This could have availability implications
on your users.

### General Recommendations
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/pipelines/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ to create it in. If you are deploying your application to different environments
also have to bootstrap those and be sure to add a *trust* relationship.

> This library requires a newer version of the bootstrapping stack which has
> been updated specifically to support cross-account continous delivery. In the future,
> been updated specifically to support cross-account continuous delivery. In the future,
> this new bootstrapping stack will become the default, but for now it is still
> opt-in.
>
Expand Down

0 comments on commit 367f151

Please sign in to comment.