fix error message in route53 data source (#13174)

This commit is contained in:
Ian Morgan 2017-03-30 01:12:15 -07:00 committed by Paul Stack
parent 11fa03cfb6
commit 1dca12201a
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ func dataSourceAwsRoute53ZoneRead(d *schema.ResourceData, meta interface{}) erro
if matchingTags && matchingVPC {
if hostedZoneFound != nil {
return fmt.Errorf("multplie Route53Zone found please use vpc_id option to filter")
return fmt.Errorf("multiple Route53Zone found please use vpc_id option to filter")
} else {
hostedZoneFound = hostedZone
}