Commit d11df8ba authored by Takayoshi Nishida's avatar Takayoshi Nishida Committed by Brad Fitzpatrick

sort: fix typo in comment

Change-Id: Ia2c87473d63175db6cb36a21be0769ae9fcb4f8b
Reviewed-on: https://go-review.googlesource.com/108695Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
parent 15095be9
......@@ -482,7 +482,7 @@ func symMerge(data Interface, a, m, b int) {
}
}
// Rotate two consecutives blocks u = data[a:m] and v = data[m:b] in data:
// Rotate two consecutive blocks u = data[a:m] and v = data[m:b] in data:
// Data of the form 'x u v y' is changed to 'x v u y'.
// Rotate performs at most b-a many calls to data.Swap.
// Rotate assumes non-degenerate arguments: a < m && m < b.
......
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