Skip to content

Commit 72ce783

Browse files
committed
docs: fix assorted spelling errors in source comments
Fix spelling errors in JSDoc comments across four modules: - aws-apigateway: "acccount" -> "account" in integration.ts - aws-appsync: "defintion" -> "definition" in schema.ts - aws-events: "paramter" -> "parameter" in connection.ts - aws-lambda: "recieve" -> "receive" in schema-registry.ts (3 occurrences)
1 parent 09e3daf commit 72ce783

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

packages/aws-cdk-lib/aws-apigateway/lib/integration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export interface IntegrationOptions {
105105
*
106106
* By default, the value must be between 50 milliseconds and 29 seconds.
107107
* The upper bound can be increased for regional and private Rest APIs only,
108-
* via a quota increase request for your acccount.
108+
* via a quota increase request for your account.
109109
* This increase might require a reduction in your account-level throttle quota limit.
110110
*
111111
* See {@link https://docs.aws.amazon.com/apigateway/latest/developerguide/limits.html Amazon API Gateway quotas} for more details.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export class SchemaFile implements ISchema {
6565
/**
6666
* Generate a Schema from file
6767
*
68-
* @returns `SchemaAsset` with immutable schema defintion
68+
* @returns `SchemaAsset` with immutable schema definition
6969
* @param filePath the file path of the schema file
7070
*/
7171
public static fromAsset(filePath: string): SchemaFile {

packages/aws-cdk-lib/aws-events/lib/connection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ export abstract class HttpParameter {
225225
}
226226

227227
/**
228-
* Render the paramter value
228+
* Render the parameter value
229229
*
230230
* @internal
231231
*/

packages/aws-cdk-lib/aws-lambda/lib/schema-registry.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ import type { IEventSourceMapping } from './event-source-mapping';
22
import type { IFunction } from './function-base';
33

44
/**
5-
* The format target function should recieve record in.
5+
* The format target function should receive record in.
66
*/
77
export class EventRecordFormat {
88
/**
9-
* The target function will recieve records as json objects.
9+
* The target function will receive records as json objects.
1010
*/
1111
public static readonly JSON = new EventRecordFormat('JSON');
1212

1313
/**
14-
* The target function will recieve records in same format as the schema source.
14+
* The target function will receive records in same format as the schema source.
1515
*/
1616
public static readonly SOURCE = new EventRecordFormat('SOURCE');
1717

0 commit comments

Comments
 (0)