]> Cypherpunks repositories - gostls13.git/commitdiff
strings.Bytes: fix typo in comment
authorAndrey Mirtchovski <mirtchovski@gmail.com>
Wed, 21 Jul 2010 19:01:15 +0000 (12:01 -0700)
committerRuss Cox <rsc@golang.org>
Wed, 21 Jul 2010 19:01:15 +0000 (12:01 -0700)
R=adg, rsc
CC=golang-dev
https://golang.org/cl/1886042

src/pkg/bytes/bytes.go

index 25a5738324cacb48d2c30dbc894ef406f3b52fbf..dc0a41553c237d97b72665829f44e291250413c1 100644 (file)
@@ -182,7 +182,7 @@ func genSplit(s, sep []byte, sepSave, n int) [][]byte {
 // Split splits the array s around each instance of sep, returning an array of subarrays of s.
 // If sep is empty, Split splits s after each UTF-8 sequence.
 // If n >= 0, Split splits s into at most n subarrays; the last subarray will contain an unsplit remainder.
-// Thus if n == 0, the result will ne nil.
+// Thus if n == 0, the result will be nil.
 func Split(s, sep []byte, n int) [][]byte { return genSplit(s, sep, 0, n) }
 
 // SplitAfter splits the array s after each instance of sep, returning an array of subarrays of s.