From bc44d1227d704e120a6e619c0adbe6298feda40b Mon Sep 17 00:00:00 2001 From: Stefan Junker Date: Wed, 30 Mar 2016 19:40:31 +0200 Subject: [PATCH] pkg/utils: fix docstring --- pkg/utils/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/utils/utils.go b/pkg/utils/utils.go index e1468aaf..1566252d 100644 --- a/pkg/utils/utils.go +++ b/pkg/utils/utils.go @@ -9,7 +9,7 @@ const ChainCNIPrefix = ("CNI-") const MaxChainLength = 29 - len(ChainCNIPrefix) // Generates a chain name to be used with iptables. -// Ensures that the generated name is less than +// Ensures that the generated chain name is less than // 29 chars in length func FormatChainName(name string, id string) string { chain := fmt.Sprintf("%x", sha512.Sum512([]byte(name+id)))