From d7062f0707299e97c41be17ab25eeccfb7cbd154 Mon Sep 17 00:00:00 2001 From: endgame Date: Mon, 4 Jan 2021 22:56:18 +1000 Subject: [PATCH] chore(route53): doc typo in RecordType (#12191) ---- *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-route53/lib/record-set.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@aws-cdk/aws-route53/lib/record-set.ts b/packages/@aws-cdk/aws-route53/lib/record-set.ts index 33aec19d9171b..3111375a8682d 100644 --- a/packages/@aws-cdk/aws-route53/lib/record-set.ts +++ b/packages/@aws-cdk/aws-route53/lib/record-set.ts @@ -172,7 +172,7 @@ export class RecordTarget { /** * - * @param values correspond with the chosen record type (e.g. for 'A' Type, specify one ore more IP addresses) + * @param values correspond with the chosen record type (e.g. for 'A' Type, specify one or more IP addresses) * @param aliasTarget alias for targets such as CloudFront distribution to route traffic to */ protected constructor(public readonly values?: string[], public readonly aliasTarget?: IAliasRecordTarget) {