Skip to content

Commit

Permalink
chore(docs): fix typos (#32858)
Browse files Browse the repository at this point in the history
### 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*
  • Loading branch information
andyu17 authored Jan 12, 2025
1 parent 713581b commit 899bc87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/cloudformation-diff/lib/diff/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ export enum ResourceImpact {
* of property-level impacts.
* @param one the current worst impact so far.
* @param two the new impact being considered (can be undefined, as we may not always be
* able to determine some peroperty's impact).
* able to determine some properties impact).
*/
function worstImpact(one: ResourceImpact, two?: ResourceImpact): ResourceImpact {
if (!two) { return one; }
Expand Down

0 comments on commit 899bc87

Please sign in to comment.