Update util.go

fix comment
This commit is contained in:
Cyrille Hemidy 2018-04-17 10:54:11 +02:00 committed by GitHub
parent 84bab8fde2
commit a18c8c01e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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()