From 9910f77b3644e350254f797a0a992c490ea41289 Mon Sep 17 00:00:00 2001 From: Nicolai Ferraris Date: Tue, 9 Mar 2021 15:39:10 -0500 Subject: [PATCH] docs(certificatemanager): Fix typo 'ExampelNet' -> 'ExampleNet' (#13319) Fixing a small typo in the aws-certificatemanager README. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- packages/@aws-cdk/aws-certificatemanager/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@aws-cdk/aws-certificatemanager/README.md b/packages/@aws-cdk/aws-certificatemanager/README.md index 320f22c91663d..24202429ac5df 100644 --- a/packages/@aws-cdk/aws-certificatemanager/README.md +++ b/packages/@aws-cdk/aws-certificatemanager/README.md @@ -68,7 +68,7 @@ When working with multiple domains, use the `CertificateValidation.fromDnsMultiZ const exampleCom = new route53.HostedZone(this, 'ExampleCom', { zoneName: 'example.com', }); -const exampleNet = new route53.HostedZone(this, 'ExampelNet', { +const exampleNet = new route53.HostedZone(this, 'ExampleNet', { zoneName: 'example.net', });