From c2b293d0470977a882645a27042203ad47503460 Mon Sep 17 00:00:00 2001 From: Paul Hinze Date: Mon, 6 Apr 2015 10:45:02 -0500 Subject: [PATCH] Fix comment typo --- builtin/providers/aws/resource_aws_route53_record.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/providers/aws/resource_aws_route53_record.go b/builtin/providers/aws/resource_aws_route53_record.go index 3f8697d53..bfee41978 100644 --- a/builtin/providers/aws/resource_aws_route53_record.go +++ b/builtin/providers/aws/resource_aws_route53_record.go @@ -59,7 +59,7 @@ func resourceAwsRoute53Record() *schema.Resource { func resourceAwsRoute53RecordUpdate(d *schema.ResourceData, meta interface{}) error { // Route 53 supports CREATE, DELETE, and UPSERT actions. We use UPSERT, and - // AWS dynamically determins if a record should be created or updated. + // AWS dynamically determines if a record should be created or updated. // Amazon Route 53 can update an existing resource record set only when all // of the following values match: Name, Type // (and SetIdentifier, which we don't use yet).