Skip to content

Commit 713581b

Browse files
authored
chore(docs): fix typos (#32859)
### Issue # (if applicable) None ### Reason for this change Fixed typos in code comments. ### 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) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 0da7a51 commit 713581b

File tree

1 file changed

+1
-1
lines changed
  • packages/@aws-cdk/custom-resource-handlers/lib/aws-eks/cluster-resource-handler

1 file changed

+1
-1
lines changed

packages/@aws-cdk/custom-resource-handlers/lib/aws-eks/cluster-resource-handler/compareLogging.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export function compareLoggingProps(oldProps: Partial<EKS.CreateClusterCommandIn
1818
if (newProps.logging?.clusterLogging === undefined && oldProps.logging?.clusterLogging === undefined) {
1919
return newProps;
2020
}
21-
// if newProps containes LogSetup
21+
// if newProps contains LogSetup
2222
if (newProps.logging && newProps.logging.clusterLogging && newProps.logging.clusterLogging.length > 0) {
2323
enabledTypes = newProps.logging.clusterLogging[0].types!;
2424
// if oldProps contains LogSetup with enabled:true

0 commit comments

Comments
 (0)