Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(batch): fix typos #33166

Merged
merged 2 commits into from
Jan 26, 2025
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions packages/aws-cdk-lib/aws-batch/lib/ecs-job-definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ interface IEcsJobDefinition extends IJobDefinition {
readonly container: IEcsContainerDefinition;

/**
* Whether to propogate tags from the JobDefinition
* Whether to propagate tags from the JobDefinition
* to the ECS task that Batch spawns
*
* @default false
Expand All @@ -42,7 +42,7 @@ export interface EcsJobDefinitionProps extends JobDefinitionProps {
readonly container: IEcsContainerDefinition;

/**
* Whether to propogate tags from the JobDefinition
* Whether to propagate tags from the JobDefinition
* to the ECS task that Batch spawns
*
* @default false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ interface IMultiNodeJobDefinition extends IJobDefinition {
readonly mainNode?: number;

/**
* Whether to propogate tags from the JobDefinition
* Whether to propagate tags from the JobDefinition
* to the ECS task that Batch spawns
*
* @default false
Expand Down Expand Up @@ -109,7 +109,7 @@ export interface MultiNodeJobDefinitionProps extends JobDefinitionProps {
readonly mainNode?: number;

/**
* Whether to propogate tags from the JobDefinition
* Whether to propagate tags from the JobDefinition
* to the ECS task that Batch spawns
*
* @default false
Expand Down
Loading