Skip to content

Commit 6f0ac51

Browse files
authored
docs(mixins-preview): fix omission of updating name for OVERRIDE strategy (#36204)
### Issue # (if applicable) N/A ### Reason for this change nit. ### Description of changes ### Describe any new or updated permissions being added ### Description of how you validated changes ### 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 6607ce9 commit 6f0ac51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/@aws-cdk/mixins-preview/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ Mixins.of(bucket).apply(new CfnBucketPropsMixin(
178178
{ strategy: PropertyMergeStrategy.MERGE }
179179
));
180180

181-
// OVERWRITE: Replaces existing property values
181+
// OVERRIDE: Replaces existing property values
182182
Mixins.of(bucket).apply(new CfnBucketPropsMixin(
183183
{ versioningConfiguration: { status: "Enabled" } },
184184
{ strategy: PropertyMergeStrategy.OVERRIDE }

0 commit comments

Comments
 (0)