Skip to content

Commit bfb54b0

Browse files
authored
fix: correct typo 'notfication' to 'notification' in Stack docstring (#35455)
### Issue # (if applicable) Closes #35433. ### Reason for this change Corrects a typo in the Javadoc for `StackProps.notificationArns` where "notfication" was misspelled. ### Description of changes Fixed the spelling of "notification" in the Javadoc comment for `StackProps.notificationArns` in `core/lib/stack.ts`. No functional code changes; documentation only. ### Describe any new or updated permissions being added No new or updated IAM permissions are required. ### Description of how you validated changes Verified the documentation change by inspecting the updated comment. No code or tests affected. ### 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 036b413 commit bfb54b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/aws-cdk-lib/core/lib/stack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ export interface StackProps {
138138
/**
139139
* SNS Topic ARNs that will receive stack events.
140140
*
141-
* @default - no notfication arns.
141+
* @default - no notification arns.
142142
*/
143143
readonly notificationArns?: string[];
144144

0 commit comments

Comments
 (0)