File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff 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 */
Original file line number Diff line number Diff line change @@ -2,16 +2,16 @@ import type { IEventSourceMapping } from './event-source-mapping';
22import 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 */
77export 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
You can’t perform that action at this time.
0 commit comments