Skip to content

Commit 561cdc0

Browse files
authored
docs(autoscaling): fix typos adjustment & interpreted (#34585)
### Issue # (if applicable) Closes #34573. ### Reason for this change ### Description of changes adjusment -> adjustment interpeted -> interpreted ### Describe any new or updated permissions being added ### Description of how you validated changes ### Checklist - [ ] 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 1141777 commit 561cdc0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/aws-cdk-lib/aws-applicationautoscaling/lib/step-scaling-action.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export class StepScalingAction extends Construct {
9999
}
100100

101101
/**
102-
* Add an adjusment interval to the ScalingAction
102+
* Add an adjustment interval to the ScalingAction
103103
*/
104104
public addAdjustment(adjustment: AdjustmentTier) {
105105
if (adjustment.lowerBound === undefined && adjustment.upperBound === undefined) {
@@ -165,7 +165,7 @@ export interface AdjustmentTier {
165165
/**
166166
* What number to adjust the capacity with
167167
*
168-
* The number is interpeted as an added capacity, a new fixed capacity or an
168+
* The number is interpreted as an added capacity, a new fixed capacity or an
169169
* added percentage depending on the AdjustmentType value of the
170170
* StepScalingPolicy.
171171
*

packages/aws-cdk-lib/aws-autoscaling/lib/step-scaling-action.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export class StepScalingAction extends Construct {
9393
}
9494

9595
/**
96-
* Add an adjusment interval to the ScalingAction
96+
* Add an adjustment interval to the ScalingAction
9797
*/
9898
public addAdjustment(adjustment: AdjustmentTier) {
9999
if (adjustment.lowerBound === undefined && adjustment.upperBound === undefined) {
@@ -159,7 +159,7 @@ export interface AdjustmentTier {
159159
/**
160160
* What number to adjust the capacity with
161161
*
162-
* The number is interpeted as an added capacity, a new fixed capacity or an
162+
* The number is interpreted as an added capacity, a new fixed capacity or an
163163
* added percentage depending on the AdjustmentType value of the
164164
* StepScalingPolicy.
165165
*

0 commit comments

Comments
 (0)