aboutsummaryrefslogtreecommitdiff
path: root/src/bytes/bytes.go
diff options
context:
space:
mode:
authorkjgorman <kieran.j.gorman@gmail.com>2021-10-10 14:30:26 +0100
committerAlexander Rakoczy <alex@golang.org>2021-10-13 16:39:23 +0000
commit3986e5c8e7df958cc1412ad06afc011022da76e1 (patch)
tree8a3d810f17b3dc2dd1449ef6b2185d9161268ae5 /src/bytes/bytes.go
parent69041c79dc2767c220519cbcb9538c39fadec59c (diff)
downloadgo-3986e5c8e7df958cc1412ad06afc011022da76e1.tar.xz
bytes: fix Cut godoc typo
If sep does not appear in s, we return nil here rather than the empty string. Presumably the docs were copied from the strings package implementation and brought that along. Change-Id: I3706c94fe04abd9e2a2c8840f7cc6116386965c8 Reviewed-on: https://go-review.googlesource.com/c/go/+/354969 Reviewed-by: Ian Lance Taylor <iant@golang.org> Trust: Alexander Rakoczy <alex@golang.org>
Diffstat (limited to 'src/bytes/bytes.go')
-rw-r--r--src/bytes/bytes.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bytes/bytes.go b/src/bytes/bytes.go
index d3e01c3de7..926f65cc8f 100644
--- a/src/bytes/bytes.go
+++ b/src/bytes/bytes.go
@@ -1260,7 +1260,7 @@ func Index(s, sep []byte) int {
// Cut slices s around the first instance of sep,
// returning the text before and after sep.
// The found result reports whether sep appears in s.
-// If sep does not appear in s, cut returns s, "", false.
+// If sep does not appear in s, cut returns s, nil, false.
//
// Cut returns slices of the original slice s, not copies.
func Cut(s, sep []byte) (before, after []byte, found bool) {