internal: change split2() comment to be consistent with behavior (#2547)
This commit is contained in:
@ -39,7 +39,7 @@ type ccResolverWrapper struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// split2 returns the values from strings.SplitN(s, sep, 2).
|
// split2 returns the values from strings.SplitN(s, sep, 2).
|
||||||
// If sep is not found, it returns ("", s, false) instead.
|
// If sep is not found, it returns ("", "", false) instead.
|
||||||
func split2(s, sep string) (string, string, bool) {
|
func split2(s, sep string) (string, string, bool) {
|
||||||
spl := strings.SplitN(s, sep, 2)
|
spl := strings.SplitN(s, sep, 2)
|
||||||
if len(spl) < 2 {
|
if len(spl) < 2 {
|
||||||
|
Reference in New Issue
Block a user