From 5562d3e061c39ac839ae0486b707fff08dbf03bb Mon Sep 17 00:00:00 2001 From: haruna Date: Sat, 12 Apr 2025 23:34:23 +0900 Subject: [PATCH] fix: typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit concatentation → concatenation --- packages/aws-cdk-lib/core/lib/token.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/aws-cdk-lib/core/lib/token.ts b/packages/aws-cdk-lib/core/lib/token.ts index 6517d7d778aec..c44b2ec8b23a6 100644 --- a/packages/aws-cdk-lib/core/lib/token.ts +++ b/packages/aws-cdk-lib/core/lib/token.ts @@ -144,7 +144,7 @@ export class Tokenization { public static reverseCompleteString(s: string): IResolvable | undefined { const fragments = Tokenization.reverseString(s); if (fragments.length !== 1) { - throw new Error(`Tokenzation.reverseCompleteString: argument must not be a concatentation, got '${s}'`); + throw new Error(`Tokenzation.reverseCompleteString: argument must not be a concatenation, got '${s}'`); } return fragments.firstToken; }