]> Cypherpunks.ru repositories - gostls13.git/commitdiff
path/filepath: remove unneeded doc statement for SplitList
authorDmitri Shuralyov <shurcooL@gmail.com>
Tue, 26 Jul 2016 17:01:18 +0000 (13:01 -0400)
committerRuss Cox <rsc@golang.org>
Wed, 12 Oct 2016 02:52:01 +0000 (02:52 +0000)
This is a followup to CL 24747, where the package doc phrase
"Functions in this package replace occurrences of slash unless otherwise specified."
was removed. The phrase was originally added in CL 7310 together
with this explicit opt out statement for SplitList.

Remove it since it's no longer neccessary. This helps consistency.

Updates #16111.
Updates #10122.

Change-Id: Iba86de57c24100adecac9cb5892ce180126c0ea6
Reviewed-on: https://go-review.googlesource.com/25250
Reviewed-by: Russ Cox <rsc@golang.org>
src/path/filepath/path.go

index 3c70cd8be68ad7be30441ccc0fcd407d509e70ad..1d8e35c969e8810aaae51ace5f45b6c69460c150 100644 (file)
@@ -177,7 +177,7 @@ func FromSlash(path string) string {
 // SplitList splits a list of paths joined by the OS-specific ListSeparator,
 // usually found in PATH or GOPATH environment variables.
 // Unlike strings.Split, SplitList returns an empty slice when passed an empty
-// string. SplitList does not replace slash characters in the returned paths.
+// string.
 func SplitList(path string) []string {
        return splitList(path)
 }