Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(docs): corrects common typos in various README files #14363

Merged
merged 2 commits into from
May 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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