From: Kay Zhu Date: Tue, 11 Mar 2014 21:34:07 +0000 (-0700) Subject: path/filepath: fixed misaligned comment. X-Git-Tag: go1.3beta1~395 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=07dc50b8f19d1a1750baf46685e375545591be85;p=gostls13.git 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://golang.org/cl/73840043 --- diff --git a/src/pkg/path/filepath/path.go b/src/pkg/path/filepath/path.go index 65d29bf9f9..71603cc594 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.