Skip to content

Commit dc348a3

Browse files
authored
Merge branch 'main' into sfn_add_comment
2 parents 42495e9 + 02e04a6 commit dc348a3

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ export interface GraphqlApiProps {
314314
/**
315315
* GraphQL schema definition. Specify how you want to define your schema.
316316
*
317-
* Schema.fromFile(filePath: string) allows schema definition through schema.graphql file
317+
* SchemaFile.fromAsset(filePath: string) allows schema definition through schema.graphql file
318318
*
319319
* @default - schema will be generated code-first (i.e. addType, addObjectType, etc.)
320320
*

packages/aws-cdk-lib/aws-certificatemanager/lib/certificate.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ export interface CertificateProps {
9494
readonly transparencyLoggingEnabled?: boolean;
9595

9696
/**
97-
* The Certifcate name.
97+
* The Certificate name.
9898
*
99-
* Since the Certifcate resource doesn't support providing a physical name, the value provided here will be recorded in the `Name` tag
99+
* Since the Certificate resource doesn't support providing a physical name, the value provided here will be recorded in the `Name` tag
100100
*
101101
* @default the full, absolute path of this construct
102102
*/

packages/aws-cdk-lib/aws-certificatemanager/test/certificate.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ describe('Transparency logging settings', () => {
407407
});
408408
});
409409

410-
describe('Certifcate Name setting', () => {
410+
describe('Certificate Name setting', () => {
411411
test('the Name tag is defaulted to path', () => {
412412
const stack = new Stack(undefined, 'TestStack');
413413

packages/aws-cdk-lib/aws-cloudfront/lib/web-distribution.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ export class ViewerCertificate {
555555
}
556556

557557
/**
558-
* Generate a viewer certifcate configuration using
558+
* Generate a viewer certificate configuration using
559559
* the CloudFront default certificate (e.g. d111111abcdef8.cloudfront.net)
560560
* and a `SecurityPolicyProtocol.TLS_V1` security policy.
561561
*

0 commit comments

Comments
 (0)