From a18c8c01e1e61f4ff3702f342ef11cbd1c4eea11 Mon Sep 17 00:00:00 2001 From: Cyrille Hemidy Date: Tue, 17 Apr 2018 10:54:11 +0200 Subject: [PATCH] Update util.go fix comment --- pkg/util/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/util/util.go b/pkg/util/util.go index 2e4a08851..f81b19cd5 100644 --- a/pkg/util/util.go +++ b/pkg/util/util.go @@ -62,7 +62,7 @@ func Hasher() func(string) (string, error) { return hasher } -// Hasher returns a hash function, which only looks at mtime to determine if a file has changed +// MtimeHasher returns a hash function, which only looks at mtime to determine if a file has changed func MtimeHasher() func(string) (string, error) { hasher := func(p string) (string, error) { h := md5.New()