Skip to content

Commit a7ba194

Browse files
authored
docs: fix typos in README files (#37396)
### Issue N/A (self-discovered typos) ### Reason for this change Several README files contain spelling errors. ### Description of changes - `aws-eks-v2/README.md`: "serivceToken" → "serviceToken" - `aws-events/README.md`: "wether" → "whether" - `aws-route53-targets/README.md`: "avaiable" → "available" - `cx-api/README.md`: "unsecure connnections" → "insecure connections" ### Description of how you validated changes Documentation-only changes. No functional impact. ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md)
1 parent de2f141 commit a7ba194

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

packages/aws-cdk-lib/aws-eks-v2/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,7 @@ If you want to use an existing kubectl provider function, for example with tight
557557

558558
```ts
559559
const handlerRole = iam.Role.fromRoleArn(this, 'HandlerRole', 'arn:aws:iam::123456789012:role/lambda-role');
560-
// get the serivceToken from the custom resource provider
560+
// get the serviceToken from the custom resource provider
561561
const functionArn = lambda.Function.fromFunctionName(this, 'ProviderOnEventFunc', 'ProviderframeworkonEvent-XXX').functionArn;
562562
const kubectlProvider = eks.KubectlProvider.fromKubectlProviderAttributes(this, 'KubectlProvider', {
563563
serviceToken: functionArn,

packages/aws-cdk-lib/aws-events/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ For more information, see [KMS key options for event bus encryption](https://doc
366366

367367
## Configuring logging
368368

369-
To configure logging for an Event Bus, leverage the LogConfig property. It allows different level of logging (NONE, INFO, TRACE, ERROR) and wether to include details or not.
369+
To configure logging for an Event Bus, leverage the LogConfig property. It allows different level of logging (NONE, INFO, TRACE, ERROR) and whether to include details or not.
370370

371371
```ts
372372
import { EventBus, IncludeDetail, Level } from 'aws-cdk-lib/aws-events';

packages/aws-cdk-lib/aws-route53-targets/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ new route53.ARecord(this, 'AliasRecord', {
222222
});
223223
```
224224

225-
If Elastic Beanstalk environment URL is not avaiable at synth time, you can specify Hosted Zone ID of the target
225+
If Elastic Beanstalk environment URL is not available at synth time, you can specify Hosted Zone ID of the target
226226

227227
```ts
228228
import { RegionInfo } from 'aws-cdk-lib/region-info';

packages/aws-cdk-lib/cx-api/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ When this feature flag is enabled, the default behaviour of OIDC Provider's cust
555555
default to reject unauthorized connections when downloading CA Certificates.
556556

557557
When this feature flag is disabled, the behaviour will be the same as current and will allow downloading
558-
thumbprints from unsecure connnections.
558+
thumbprints from insecure connections.
559559

560560
_cdk.json_
561561

0 commit comments

Comments
 (0)