From 9612d36615bb21d9d48f189e68931e3bfddf2704 Mon Sep 17 00:00:00 2001 From: Stefan Junker Date: Thu, 31 Mar 2016 11:50:18 +0200 Subject: [PATCH] pkg/utils: fix docstring --- utils/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/utils.go b/utils/utils.go index 5877fb62..ea29c965 100644 --- a/utils/utils.go +++ b/utils/utils.go @@ -12,7 +12,7 @@ const ( ) // Generates a chain name to be used with iptables. -// Ensures that the generated chain name is less than +// Ensures that the generated chain name is exactly // maxChainLength chars in length func FormatChainName(name string, id string) string { chainBytes := sha512.Sum512([]byte(name + id))