From 8cdafe0508eaec9f2e349940ea09642a65fab838 Mon Sep 17 00:00:00 2001 From: cagriy Date: Tue, 29 Nov 2016 15:49:34 +0000 Subject: [PATCH] typo corrected in structure.go (#10415) --- builtin/providers/aws/structure.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/providers/aws/structure.go b/builtin/providers/aws/structure.go index 8a2470d626..ea769bf81d 100644 --- a/builtin/providers/aws/structure.go +++ b/builtin/providers/aws/structure.go @@ -166,7 +166,7 @@ func expandIPPerms( // AWS's behavior in the error message. if *perm.IpProtocol == "-1" && (*perm.FromPort != 0 || *perm.ToPort != 0) { return nil, fmt.Errorf( - "from_port (%d) and to_port (%d) must both be 0 to use the the 'ALL' \"-1\" protocol!", + "from_port (%d) and to_port (%d) must both be 0 to use the 'ALL' \"-1\" protocol!", *perm.FromPort, *perm.ToPort) }