Skip to content

Commit

Permalink
docs(synthetics): fix small typo in README (#10593)
Browse files Browse the repository at this point in the history
Removing an extra closing parenthesis `)`.

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
mxdvl authored Sep 29, 2020
1 parent 3b88256 commit f63db88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-synthetics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import * as synthetics from '@aws-cdk/aws-synthetics';
const canary = new synthetics.Canary(this, 'MyCanary', {
schedule: synthetics.Schedule.rate(Duration.minutes(5)),
test: Test.custom({
code: Code.fromAsset(path.join(__dirname, 'canary'))),
code: Code.fromAsset(path.join(__dirname, 'canary')),
handler: 'index.handler',
}),
});
Expand Down

0 comments on commit f63db88

Please sign in to comment.