1
0
mirror of https://github.com/golang/go synced 2024-11-21 21:34:40 -07:00

path: fix typo in path.Visitor

Fixes #1088.

R=gri, iant
CC=golang-dev
https://golang.org/cl/2157043
This commit is contained in:
Andrew Gerrand 2010-09-09 09:24:27 +10:00
parent cc2157ed4f
commit 55986c1329

View File

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