Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading