Skip to content
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
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-batch/lib/scheduling-policy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export class FairshareSchedulingPolicy extends SchedulingPolicyBase implements I
public static readonly PROPERTY_INJECTION_ID: string = 'aws-cdk-lib.aws-batch.FairshareSchedulingPolicy';

/**
* Reference an exisiting Scheduling Policy by its ARN
* Reference an existing Scheduling Policy by its ARN
*/
public static fromFairshareSchedulingPolicyArn(scope: Construct, id: string, fairshareSchedulingPolicyArn: string): IFairshareSchedulingPolicy {
const stack = Stack.of(scope);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export class DnsValidatedCertificate extends CertificateBase implements ICertifi
Region: props.region,
Route53Endpoint: props.route53Endpoint,
RemovalPolicy: cdk.Lazy.any({ produce: () => this._removalPolicy }),
// Custom resources properties are always converted to strings; might as well be explict here.
// Custom resources properties are always converted to strings; might as well be explicit here.
CleanupRecords: props.cleanupRoute53Records ? 'true' : undefined,
Tags: cdk.Lazy.list({ produce: () => this.tags.renderTags() }),
},
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-cloudtrail/lib/cloudtrail.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export interface TrailProps {

/** The Amazon S3 bucket
*
* @default - if not supplied a bucket will be created with all the correct permisions
* @default - if not supplied a bucket will be created with all the correct permissions
*/
readonly bucket?: s3.IBucket;

Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-codecommit/lib/repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export interface IRepository extends IResource, notifications.INotificationRuleS
* events specified by you are emitted. Similar to `onEvent` API.
*
* You can also use the methods to define rules for the specific event emitted.
* eg: `notifyOnPullRequstCreated`.
* e.g. `notifyOnPullRequestCreated`.
*
* @returns CodeStar Notifications rule associated with this repository.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class HttpHeaderListenerCondition extends ListenerCondition {
}

/**
* HTTP reqeust method config of the listener rule condition
* HTTP request method config of the listener rule condition
*/
class HttpRequestMethodListenerCondition extends ListenerCondition {
constructor(public readonly values: string[]) {
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-servicecatalog/lib/constraints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export interface StackSetsConstraintOptions extends CommonConstraintOptions {
readonly executionRoleName: string;

/**
* Wether to allow end users to create, update, and delete stacks.
* Whether to allow end users to create, update, and delete stacks.
*
* @default false
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/core/lib/cfn-fn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ export class Fn {
/**
* The intrinsic function ``Fn::FindInMap`` returns the value corresponding to
* keys in a two-level map that is declared in the Mappings section.
* Warning: do not use with lazy mappings as this function will not guarentee a lazy mapping to render in the template.
* Warning: do not use with lazy mappings as this function will not guarantee a lazy mapping to render in the template.
* Prefer to use `CfnMapping.findInMap` in general.
* @returns a token represented as a string
*/
Expand Down
Loading