From: Stefan Junker Date: Wed, 30 Mar 2016 17:40:31 +0000 (+0200) Subject: pkg/utils: fix docstring X-Git-Url: https://git.halfball.org/?a=commitdiff_plain;h=bc44d1227d704e120a6e619c0adbe6298feda40b;p=cni.git pkg/utils: fix docstring --- diff --git a/pkg/utils/utils.go b/pkg/utils/utils.go index e1468aa..1566252 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)))