diff options
Diffstat (limited to 'src/bytes/bytes.go')
| -rw-r--r-- | src/bytes/bytes.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bytes/bytes.go b/src/bytes/bytes.go index bdb0366897..4a2c9eac57 100644 --- a/src/bytes/bytes.go +++ b/src/bytes/bytes.go @@ -592,7 +592,7 @@ func Join(s [][]byte, sep []byte) []byte { // HasPrefix reports whether the byte slice s begins with prefix. func HasPrefix(s, prefix []byte) bool { - return len(s) >= len(prefix) && Equal(s[0:len(prefix)], prefix) + return len(s) >= len(prefix) && Equal(s[:len(prefix)], prefix) } // HasSuffix reports whether the byte slice s ends with suffix. |
