Skip to content

Commit 753ed62

Browse files
authored
fix(core): typo (#34123)
### Issue # (if applicable) None ### Reason for this change Fix typo ### Description of changes `concatentation` → `concatenation` ### Describe any new or updated permissions being added None ### Description of how you validated changes None ### 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 9a76fdc commit 753ed62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: packages/aws-cdk-lib/core/lib/token.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ export class Tokenization {
144144
public static reverseCompleteString(s: string): IResolvable | undefined {
145145
const fragments = Tokenization.reverseString(s);
146146
if (fragments.length !== 1) {
147-
throw new Error(`Tokenzation.reverseCompleteString: argument must not be a concatentation, got '${s}'`);
147+
throw new Error(`Tokenzation.reverseCompleteString: argument must not be a concatenation, got '${s}'`);
148148
}
149149
return fragments.firstToken;
150150
}

0 commit comments

Comments
 (0)