From 04811ffdf294a07a49884122ee56aefc1b91a99c Mon Sep 17 00:00:00 2001 From: yu <77177966+andyu17@users.noreply.github.com> Date: Mon, 13 Jan 2025 22:23:08 +0900 Subject: [PATCH] chore(docs): fix typos (#32879) ### 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* --- packages/@aws-cdk/aws-eks-v2-alpha/lib/addon.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@aws-cdk/aws-eks-v2-alpha/lib/addon.ts b/packages/@aws-cdk/aws-eks-v2-alpha/lib/addon.ts index 56b767840f2ba..0d0087b7c04b8 100644 --- a/packages/@aws-cdk/aws-eks-v2-alpha/lib/addon.ts +++ b/packages/@aws-cdk/aws-eks-v2-alpha/lib/addon.ts @@ -28,7 +28,7 @@ export interface AddonProps { */ readonly addonName: string; /** - * Version of the Add-On. You can check all available versions with describe-addon-versons. + * Version of the Add-On. You can check all available versions with describe-addon-versions. * For example, this lists all available versions for the `eks-pod-identity-agent` addon: * $ aws eks describe-addon-versions --addon-name eks-pod-identity-agent \ * --query 'addons[*].addonVersions[*].addonVersion'