From 55986c1329cbb2d8ca397e4d909049ce65700483 Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Thu, 9 Sep 2010 09:24:27 +1000 Subject: [PATCH] path: fix typo in path.Visitor Fixes #1088. R=gri, iant CC=golang-dev https://golang.org/cl/2157043 --- src/pkg/path/path.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.48.1