aboutsummaryrefslogtreecommitdiff
path: root/plugin/route53/route53.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/route53/route53.go')
-rw-r--r--plugin/route53/route53.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/route53/route53.go b/plugin/route53/route53.go
index 644f7b431..c86d5f0f5 100644
--- a/plugin/route53/route53.go
+++ b/plugin/route53/route53.go
@@ -193,7 +193,7 @@ func maybeUnescape(s string) (string, error) {
case r >= rune('0') && r <= rune('9'):
case r == rune('*'):
if out != "" {
- return "", errors.New("`*' ony supported as wildcard (leftmost label)")
+ return "", errors.New("`*' only supported as wildcard (leftmost label)")
}
case r == rune('-'):
case r == rune('.'):