Commit 4a9a0056 authored by Andrey Mirtchovski's avatar Andrey Mirtchovski Committed by Russ Cox

sort: fix comment typo

R=rsc
CC=golang-dev
https://golang.org/cl/198084
parent 8b8c103b
......@@ -12,7 +12,7 @@ package sort
type Interface interface {
// Len is the number of elements in the collection.
Len() int
// Less returns whether the element with index i is should sort
// Less returns whether the element with index i should sort
// before the element with index j.
Less(i, j int) bool
// Swap swaps the elements with indexes i and j.
......
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