Skip to content

Commit 94be001

Browse files
authored
chore: fix simultaneous typos (#21837)
---- ### All Submissions: * [x] Have you followed the guidelines in our [Contributing guide?](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) ### Adding new Unconventional Dependencies: * [ ] This PR adds new unconventional dependencies following the process described [here](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md/#adding-new-unconventional-dependencies) ### New Features * [ ] Have you added the new feature to an [integration test](https://github.com/aws/aws-cdk/blob/main/INTEGRATION_TESTS.md)? * [ ] Did you use `yarn integ` to deploy the infrastructure and generate the snapshot (i.e. `yarn integ` without `--dry-run`)? *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 3e55092 commit 94be001

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/aws-cdk/lib/cdk-toolkit.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -930,7 +930,7 @@ interface WatchOptions extends Omit<CfnDeployOptions, 'execute'> {
930930
readonly traceLogs?: boolean;
931931

932932
/**
933-
* Maximum number of simulatenous deployments (dependency permitting) to execute.
933+
* Maximum number of simultaneous deployments (dependency permitting) to execute.
934934
* The default is '1', which executes all deployments serially.
935935
*
936936
* @default 1
@@ -1009,7 +1009,7 @@ export interface DeployOptions extends CfnDeployOptions, WatchOptions {
10091009
readonly cloudWatchLogMonitor?: CloudWatchLogEventMonitor;
10101010

10111011
/**
1012-
* Maximum number of simulatenous deployments (dependency permitting) to execute.
1012+
* Maximum number of simultaneous deployments (dependency permitting) to execute.
10131013
* The default is '1', which executes all deployments serially.
10141014
*
10151015
* @default 1

packages/aws-cdk/lib/cli.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ async function parseCommandLineArguments() {
147147
"'true' by default, use --no-logs to turn off. " +
148148
"Only in effect if specified alongside the '--watch' option",
149149
})
150-
.option('concurrency', { type: 'number', desc: 'Maximum number of simulatenous deployments (dependency permitting) to execute.', default: 1, requiresArg: true }),
150+
.option('concurrency', { type: 'number', desc: 'Maximum number of simultaneous deployments (dependency permitting) to execute.', default: 1, requiresArg: true }),
151151
)
152152
.command('import [STACK]', 'Import existing resource(s) into the given STACK', (yargs: Argv) => yargs
153153
.option('execute', { type: 'boolean', desc: 'Whether to execute ChangeSet (--no-execute will NOT execute the ChangeSet)', default: true })
@@ -217,7 +217,7 @@ async function parseCommandLineArguments() {
217217
desc: 'Show CloudWatch log events from all resources in the selected Stacks in the terminal. ' +
218218
"'true' by default, use --no-logs to turn off",
219219
})
220-
.option('concurrency', { type: 'number', desc: 'Maximum number of simulatenous deployments (dependency permitting) to execute.', default: 1, requiresArg: true }),
220+
.option('concurrency', { type: 'number', desc: 'Maximum number of simultaneous deployments (dependency permitting) to execute.', default: 1, requiresArg: true }),
221221
)
222222
.command('destroy [STACKS..]', 'Destroy the stack(s) named STACKS', (yargs: Argv) => yargs
223223
.option('all', { type: 'boolean', default: false, desc: 'Destroy all available stacks' })

0 commit comments

Comments
 (0)