aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/path/path.go
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2009-11-05 18:24:53 -0800
committerRobert Griesemer <gri@golang.org>2009-11-05 18:24:53 -0800
commit7e92eedced0d592e1e2beef291d857a95f55bcfb (patch)
tree061c2e631629bb8a2f18e1f24dfa454608ba2008 /src/pkg/path/path.go
parent183edddb9dc0146d37c9baea2b8b2e326cc27bb1 (diff)
downloadgo-7e92eedced0d592e1e2beef291d857a95f55bcfb.tar.xz
gofmt'ed various stragglers
R=rsc http://go/go-review/1022002
Diffstat (limited to 'src/pkg/path/path.go')
-rw-r--r--src/pkg/path/path.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/path/path.go b/src/pkg/path/path.go
index 97245213ea..3f4bf0fd56 100644
--- a/src/pkg/path/path.go
+++ b/src/pkg/path/path.go
@@ -152,7 +152,7 @@ func walk(path string, d *os.Dir, v Visitor, errors chan<- os.Error) {
}
if !v.VisitDir(path, d) {
- return; // skip directory entries
+ return; // skip directory entries
}
list, err := io.ReadDir(path);
@@ -180,7 +180,7 @@ func Walk(root string, v Visitor, errors chan<- os.Error) {
if errors != nil {
errors <- err;
}
- return; // can't progress
+ return; // can't progress
}
walk(root, d, v, errors);
}