Commit 6597bcbe authored by Dmitri Shuralyov's avatar Dmitri Shuralyov Committed by Russ Cox

path/filepath: remove unneeded doc statement for SplitList

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/25250Reviewed-by: 's avatarRuss Cox <rsc@golang.org>
parent 460d112f
......@@ -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)
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment