diff --git a/src/sort/sort.go b/src/sort/sort.go index a7304af53de2bce3a5d6e99ab0fd5d88d5217625..7282b26ec4b6f7b6d1929101982462c65e61f0b5 100644 --- a/src/sort/sort.go +++ b/src/sort/sort.go @@ -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.