diff options
| author | Andrew Gerrand <adg@golang.org> | 2010-09-09 09:24:27 +1000 |
|---|---|---|
| committer | Andrew Gerrand <adg@golang.org> | 2010-09-09 09:24:27 +1000 |
| commit | 55986c1329cbb2d8ca397e4d909049ce65700483 (patch) | |
| tree | f11fd42af1bacce9f6103ca5e9baaf83ab392924 /src/pkg/path/path.go | |
| parent | cc2157ed4f26d635868a9b4b67377c8324d5e233 (diff) | |
| download | go-55986c1329cbb2d8ca397e4d909049ce65700483.tar.xz | |
path: fix typo in path.Visitor
Fixes #1088.
R=gri, iant
CC=golang-dev
https://golang.org/cl/2157043
Diffstat (limited to 'src/pkg/path/path.go')
| -rw-r--r-- | src/pkg/path/path.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
