From: Dmitri Shuralyov Date: Tue, 26 Jul 2016 17:01:18 +0000 (-0400) Subject: path/filepath: remove unneeded doc statement for SplitList X-Git-Tag: go1.8beta1~936 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=6597bcbe53cad07b0ac4070b4f428f5db3331383;p=gostls13.git 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/25250 Reviewed-by: Russ Cox --- diff --git a/src/path/filepath/path.go b/src/path/filepath/path.go index 3c70cd8be6..1d8e35c969 100644 --- a/src/path/filepath/path.go +++ b/src/path/filepath/path.go @@ -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) }