summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKay Zhu <kayzhu@google.com>2014-03-11 14:34:07 -0700
committerKay Zhu <kayzhu@google.com>2014-03-11 14:34:07 -0700
commit58e178cb4aa1d21c3398751f6b32e124b61738af (patch)
tree10e1a86912e5c7bb0fa8f746cae8a31dc56b9333
parentc7efbdf11301769f4df5bfed5db034dca06141b7 (diff)
downloadgo-58e178cb4aa1d21c3398751f6b32e124b61738af.tar.gz
path/filepath: fixed misaligned comment.
The comment for 'Clean' function is prepended with spaces instead of a single tab, resulting in visually misaligned comment in the generated documentation. LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://codereview.appspot.com/73840043 Committer: Brad Fitzpatrick <bradfitz@golang.org>
-rw-r--r--src/pkg/path/filepath/path.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/path/filepath/path.go b/src/pkg/path/filepath/path.go
index 65d29bf9f..71603cc59 100644
--- a/src/pkg/path/filepath/path.go
+++ b/src/pkg/path/filepath/path.go
@@ -67,7 +67,7 @@ const (
// along with the non-.. element that precedes it.
// 4. Eliminate .. elements that begin a rooted path:
// that is, replace "/.." by "/" at the beginning of a path,
-// assuming Separator is '/'.
+// assuming Separator is '/'.
//
// The returned path ends in a slash only if it represents a root directory,
// such as "/" on Unix or `C:\` on Windows.