Skip to content

Commit

Permalink
docs: remove spurious closing parentheses (#11711)
Browse files Browse the repository at this point in the history
Fixes #11533


----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
RomainMuller authored Nov 25, 2020
1 parent c61efd3 commit e236778
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-apigateway/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ new apigw.DomainName(this, 'domain-name', {
domainName: 'example.com',
certificate: acm.Certificate.fromCertificateArn(this, 'cert', 'arn:aws:acm:us-east-1:1111111:certificate/11-3336f1-44483d-adc7-9cd375c5169d'),
mtls: {
bucket: new Bucket(this, 'bucket')),
bucket: new Bucket(this, 'bucket'),
key: 'truststore.pem',
version: 'version',
},
Expand Down

0 comments on commit e236778

Please sign in to comment.