Skip to content

Commit 0aa3e00

Browse files
committed
docs(appsync): fix "an unique" to "a unique" in JSDoc comments
"unique" starts with a consonant sound /juː/, so the correct indefinite article is "a" (not "an").
1 parent 012cf32 commit 0aa3e00

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

packages/aws-cdk-lib/aws-appsync/lib/eventapi.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ export interface EventApiAttributes {
513513
readonly apiName?: string;
514514

515515
/**
516-
* an unique AWS AppSync Event API identifier
516+
* a unique AWS AppSync Event API identifier
517517
* i.e. 'lxz775lwdrgcndgz3nurvac7oa'
518518
*/
519519
readonly apiId: string;
@@ -579,7 +579,7 @@ export class EventApi extends EventApiBase {
579579
}
580580

581581
/**
582-
* an unique AWS AppSync Event API identifier
582+
* a unique AWS AppSync Event API identifier
583583
* i.e. 'lxz775lwdrgcndgz3nurvac7oa'
584584
*/
585585
public readonly apiId: string;

packages/aws-cdk-lib/aws-appsync/lib/graphqlapi-base.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ export enum AuthorizationType {
171171
export interface IGraphqlApi extends IResource, IGraphQLApiRef {
172172

173173
/**
174-
* an unique AWS AppSync GraphQL API identifier
174+
* a unique AWS AppSync GraphQL API identifier
175175
* i.e. 'lxz775lwdrgcndgz3nurvac7oa'
176176
*
177177
* @attribute
@@ -352,7 +352,7 @@ export interface IGraphqlApi extends IResource, IGraphQLApiRef {
352352
*/
353353
export abstract class GraphqlApiBase extends Resource implements IGraphqlApi {
354354
/**
355-
* an unique AWS AppSync GraphQL API identifier
355+
* a unique AWS AppSync GraphQL API identifier
356356
* i.e. 'lxz775lwdrgcndgz3nurvac7oa'
357357
*/
358358
public abstract readonly apiId: string;

packages/aws-cdk-lib/aws-appsync/lib/graphqlapi.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ export interface GraphqlApiProps {
531531
*/
532532
export interface GraphqlApiAttributes {
533533
/**
534-
* an unique AWS AppSync GraphQL API identifier
534+
* a unique AWS AppSync GraphQL API identifier
535535
* i.e. 'lxz775lwdrgcndgz3nurvac7oa'
536536
*/
537537
readonly graphqlApiId: string;
@@ -621,7 +621,7 @@ export class GraphqlApi extends GraphqlApiBase {
621621
}
622622

623623
/**
624-
* an unique AWS AppSync GraphQL API identifier
624+
* a unique AWS AppSync GraphQL API identifier
625625
* i.e. 'lxz775lwdrgcndgz3nurvac7oa'
626626
*/
627627
public readonly apiId: string;

0 commit comments

Comments
 (0)