Skip to content

Commit 69d3407

Browse files
committed
docs: fix "it's" to "its" (possessive) in source comments
"it's" is a contraction of "it is" or "it has". The possessive form of "it" is "its" (no apostrophe).
1 parent 012cf32 commit 69d3407

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

packages/@aws-cdk/aws-glue-alpha/lib/triggers/workflow.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ export class Workflow extends WorkflowBase {
388388
}
389389

390390
/**
391-
* Import an workflow from it's name
391+
* Import a workflow from its name
392392
*/
393393
public static fromWorkflowArn(scope: constructs.Construct, id: string, workflowArn: string): IWorkflow {
394394
return this.fromWorkflowAttributes(scope, id, {

packages/aws-cdk-lib/aws-config/lib/rule.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -818,7 +818,7 @@ export class ManagedRuleIdentifiers {
818818
public static readonly CLB_MULTIPLE_AZ = 'CLB_MULTIPLE_AZ';
819819
/**
820820
* Checks whether an AWS CloudFormation stack's actual configuration differs, or has drifted,
821-
* from it's expected configuration.
821+
* from its expected configuration.
822822
* @see https://docs.aws.amazon.com/config/latest/developerguide/cloudformation-stack-drift-detection-check.html
823823
*/
824824
public static readonly CLOUDFORMATION_STACK_DRIFT_DETECTION_CHECK = 'CLOUDFORMATION_STACK_DRIFT_DETECTION_CHECK';

packages/aws-cdk-lib/aws-ecs-patterns/lib/base/queue-processing-service-base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ export abstract class QueueProcessingServiceBase extends Construct {
347347
const errorProps = ['retentionPeriod', 'visibilityTimeout', 'maxReceiveCount'].filter(prop => props.hasOwnProperty(prop));
348348
throw new ValidationError('OnlyQueue', `${errorProps.join(', ')} can be set only when queue is not set. Specify them in the QueueProps of the queue`, this);
349349
}
350-
// Create the SQS queue and it's corresponding DLQ if one is not provided
350+
// Create the SQS queue and its corresponding DLQ if one is not provided
351351
if (props.queue) {
352352
this.sqsQueue = props.queue;
353353
} else {

packages/aws-cdk-lib/core/lib/cfn-parameter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ export class CfnParameter extends CfnElement {
114114

115115
/**
116116
* Creates a parameter construct.
117-
* Note that the name (logical ID) of the parameter will derive from it's `coname` and location
117+
* Note that the name (logical ID) of the parameter will derive from its `coname` and location
118118
* within the stack. Therefore, it is recommended that parameters are defined at the stack level.
119119
*
120120
* @param scope The parent construct.

0 commit comments

Comments
 (0)