From d7fc812cf80412fcf586feb9ee66f6f36f46478c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl?= Date: Thu, 1 Apr 2021 13:30:06 +0200 Subject: [PATCH] chore: fix a typo in comment --- pkg/resource/aws/aws_route53_record_ext.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/resource/aws/aws_route53_record_ext.go b/pkg/resource/aws/aws_route53_record_ext.go index bbfe11a3..8e4b1f8f 100644 --- a/pkg/resource/aws/aws_route53_record_ext.go +++ b/pkg/resource/aws/aws_route53_record_ext.go @@ -27,7 +27,7 @@ func (r *AwsRoute53Record) NormalizeForState() (resource.Resource, error) { r.SetIdentifier = aws.String("") } - // This ensures that if we find a nil value we don't drift + // This ensures that if we find an empty records value we don't drift if r.Records != nil && len(*r.Records) == 0 { r.Records = nil }