From: Andrew Gerrand Date: Wed, 8 Sep 2010 23:24:27 +0000 (+1000) Subject: path: fix typo in path.Visitor X-Git-Tag: weekly.2010-09-15~90 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=55986c1329cbb2d8ca397e4d909049ce65700483;p=gostls13.git path: fix typo in path.Visitor Fixes #1088. R=gri, iant CC=golang-dev https://golang.org/cl/2157043 --- diff --git a/src/pkg/path/path.go b/src/pkg/path/path.go index 6a499f0426..8ed6a28d58 100644 --- a/src/pkg/path/path.go +++ b/src/pkg/path/path.go @@ -140,7 +140,7 @@ func Ext(path string) string { } // Visitor methods are invoked for corresponding file tree entries -// visited by Walk. The parameter path is the full path of d relative +// visited by Walk. The parameter path is the full path of f relative // to root. type Visitor interface { VisitDir(path string, f *os.FileInfo) bool