Skip to content

Commit 309df92

Browse files
authored
docs(codepipeline): fix typo (#33209)
### Issue # (if applicable) None ### Description of changes Fixed typo in code comment. ### 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 6189ad2 commit 309df92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/aws-cdk-lib/aws-codepipeline/lib/private/rich-action.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ function sameEnv(env1: ResourceEnvironment, env2: ResourceEnvironment) {
110110
* Whether two string probably contain the same environment dimension (region or account)
111111
*
112112
* Used to compare either accounts or regions, and also returns true if both
113-
* are unresolved (in which case both are expted to be "current region" or "current account").
113+
* are unresolved (in which case both are expected to be "current region" or "current account").
114114
*/
115115
function sameEnvDimension(dim1: string, dim2: string) {
116116
return [TokenComparison.SAME, TokenComparison.BOTH_UNRESOLVED].includes(Token.compareStrings(dim1, dim2));

0 commit comments

Comments
 (0)