From: Matthew Dempsky Date: Mon, 7 Jan 2013 03:44:04 +0000 (-0500) Subject: bytes: Fix missing godoc punctuation. X-Git-Tag: go1.1rc2~1462 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=2e24a737c5d9106ab3c9834530f760cd5ebd8905;p=gostls13.git bytes: Fix missing godoc punctuation. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/7067047 --- diff --git a/src/pkg/bytes/bytes.go b/src/pkg/bytes/bytes.go index cb4dae6aec..e3ee5b1d88 100644 --- a/src/pkg/bytes/bytes.go +++ b/src/pkg/bytes/bytes.go @@ -12,7 +12,7 @@ import ( ) // Compare returns an integer comparing two byte slices lexicographically. -// The result will be 0 if a==b, -1 if a < b, and +1 if a > b +// The result will be 0 if a==b, -1 if a < b, and +1 if a > b. // A nil argument is equivalent to an empty slice. func Compare(a, b []byte) int { m := len(a)