Commit 2e24a737 authored by Matthew Dempsky's avatar Matthew Dempsky Committed by Russ Cox

bytes: Fix missing godoc punctuation.

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/7067047
parent 8cf45909
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment