Skip to content

Commit 899bc87

Browse files
authored
chore(docs): fix typos (#32858)
### 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*
1 parent 713581b commit 899bc87

File tree

1 file changed

+1
-1
lines changed
  • packages/@aws-cdk/cloudformation-diff/lib/diff

1 file changed

+1
-1
lines changed

packages/@aws-cdk/cloudformation-diff/lib/diff/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ export enum ResourceImpact {
516516
* of property-level impacts.
517517
* @param one the current worst impact so far.
518518
* @param two the new impact being considered (can be undefined, as we may not always be
519-
* able to determine some peroperty's impact).
519+
* able to determine some properties impact).
520520
*/
521521
function worstImpact(one: ResourceImpact, two?: ResourceImpact): ResourceImpact {
522522
if (!two) { return one; }

0 commit comments

Comments
 (0)