From f7a4a909cdabaf96cca875577f1892952cfbdd17 Mon Sep 17 00:00:00 2001 From: Shuto Yukawa Date: Thu, 26 Mar 2026 16:30:42 +0900 Subject: [PATCH] chore: fix more spelling errors in documentation comments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - supress/Supresses → suppress/Suppresses (aws-autoscaling) - attatched → attached (aws-stepfunctions-tasks) - attched → attached (aws-ecs) - Specifiying → Specifying (aws-ec2) - acccount → account (aws-apigateway) --- packages/aws-cdk-lib/aws-apigateway/lib/integration.ts | 2 +- packages/aws-cdk-lib/aws-autoscaling/lib/volume.ts | 4 ++-- packages/aws-cdk-lib/aws-ec2/lib/launch-template.ts | 2 +- packages/aws-cdk-lib/aws-ecs/lib/base/base-service.ts | 2 +- .../aws-stepfunctions-tasks/lib/apigateway/base-types.ts | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/aws-cdk-lib/aws-apigateway/lib/integration.ts b/packages/aws-cdk-lib/aws-apigateway/lib/integration.ts index 53c286b0e7b5d..18f910ba5bc10 100644 --- a/packages/aws-cdk-lib/aws-apigateway/lib/integration.ts +++ b/packages/aws-cdk-lib/aws-apigateway/lib/integration.ts @@ -105,7 +105,7 @@ export interface IntegrationOptions { * * By default, the value must be between 50 milliseconds and 29 seconds. * The upper bound can be increased for regional and private Rest APIs only, - * via a quota increase request for your acccount. + * via a quota increase request for your account. * This increase might require a reduction in your account-level throttle quota limit. * * See {@link https://docs.aws.amazon.com/apigateway/latest/developerguide/limits.html Amazon API Gateway quotas} for more details. diff --git a/packages/aws-cdk-lib/aws-autoscaling/lib/volume.ts b/packages/aws-cdk-lib/aws-autoscaling/lib/volume.ts index 038ab8153759e..a5fc13b41558a 100644 --- a/packages/aws-cdk-lib/aws-autoscaling/lib/volume.ts +++ b/packages/aws-cdk-lib/aws-autoscaling/lib/volume.ts @@ -30,7 +30,7 @@ export interface BlockDevice { * Amazon EC2 Auto Scaling launches a replacement instance if the instance fails the health check. * * @default true - device mapping is left untouched - * @deprecated use `BlockDeviceVolume.noDevice()` as the volume to supress a mapping. + * @deprecated use `BlockDeviceVolume.noDevice()` as the volume to suppress a mapping. * */ readonly mappingEnabled?: boolean; @@ -163,7 +163,7 @@ export class BlockDeviceVolume { } /** - * Supresses a volume mapping + * Suppresses a volume mapping */ public static noDevice() { return this._NO_DEVICE; diff --git a/packages/aws-cdk-lib/aws-ec2/lib/launch-template.ts b/packages/aws-cdk-lib/aws-ec2/lib/launch-template.ts index 1d35f3c7118fb..ca295859d5a3b 100644 --- a/packages/aws-cdk-lib/aws-ec2/lib/launch-template.ts +++ b/packages/aws-cdk-lib/aws-ec2/lib/launch-template.ts @@ -846,7 +846,7 @@ export class LaunchTemplate extends Resource implements ILaunchTemplate, iam.IGr // tagSpecification: undefined // CDK only has placement groups, not placement. - // Specifiying options other than placementGroup is not supported yet. + // Specifying options other than placementGroup is not supported yet. // placement: undefined, }, diff --git a/packages/aws-cdk-lib/aws-ecs/lib/base/base-service.ts b/packages/aws-cdk-lib/aws-ecs/lib/base/base-service.ts index be5be19c6dd39..1c26675d0692c 100644 --- a/packages/aws-cdk-lib/aws-ecs/lib/base/base-service.ts +++ b/packages/aws-cdk-lib/aws-ecs/lib/base/base-service.ts @@ -461,7 +461,7 @@ export interface BaseServiceOptions { /** * Configuration details for a volume used by the service. This allows you to specify - * details about the EBS volume that can be attched to ECS tasks. + * details about the EBS volume that can be attached to ECS tasks. * * @default - undefined */ diff --git a/packages/aws-cdk-lib/aws-stepfunctions-tasks/lib/apigateway/base-types.ts b/packages/aws-cdk-lib/aws-stepfunctions-tasks/lib/apigateway/base-types.ts index d9901ca3ade4b..959d9b3148054 100644 --- a/packages/aws-cdk-lib/aws-stepfunctions-tasks/lib/apigateway/base-types.ts +++ b/packages/aws-cdk-lib/aws-stepfunctions-tasks/lib/apigateway/base-types.ts @@ -60,7 +60,7 @@ export interface CallApiGatewayEndpointBaseOptions { readonly apiPath?: string; /** - * Query strings attatched to end of request + * Query strings attached to end of request * @default - No query parameters */ readonly queryParameters?: sfn.TaskInput;