diff options
| author | Robert Griesemer <gri@golang.org> | 2010-03-11 16:40:32 -0800 |
|---|---|---|
| committer | Robert Griesemer <gri@golang.org> | 2010-03-11 16:40:32 -0800 |
| commit | 8107cad45a949eea459225da7c342ea8cc3ac330 (patch) | |
| tree | 0d38e2e454dd408cbda8b41c492d55e4c3c7ed7e /src/pkg/path/path.go | |
| parent | 698bc461bf28b7dd888ff874097141b55c935f41 (diff) | |
| download | go-8107cad45a949eea459225da7c342ea8cc3ac330.tar.xz | |
math, path: minor comment fixes
R=r
CC=golang-dev
https://golang.org/cl/444043
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 3ce2166e37..71d8b42158 100644 --- a/src/pkg/path/path.go +++ b/src/pkg/path/path.go @@ -115,7 +115,7 @@ func Split(path string) (dir, file string) { return "", path } -// Join joins any number of path elemets into a single path, adding a +// Join joins any number of path elements into a single path, adding a // separating slash if necessary. All empty strings are ignored. func Join(elem ...string) string { for i, e := range elem { |
