grammar: replace all occurrences of "the the" with "the"
Kubernetes-commit: e4f776f23098ecf942cafa898777195adbc800f1
This commit is contained in:
parent
abd5295393
commit
bfae23fc18
|
@ -336,7 +336,7 @@ func (r *RuntimeSort) Less(i, j int) bool {
|
||||||
|
|
||||||
// OriginalPosition returns the starting (original) position of a particular index.
|
// OriginalPosition returns the starting (original) position of a particular index.
|
||||||
// e.g. If OriginalPosition(0) returns 5 than the
|
// e.g. If OriginalPosition(0) returns 5 than the
|
||||||
// the item currently at position 0 was at position 5 in the original unsorted array.
|
// item currently at position 0 was at position 5 in the original unsorted array.
|
||||||
func (r *RuntimeSort) OriginalPosition(ix int) int {
|
func (r *RuntimeSort) OriginalPosition(ix int) int {
|
||||||
if ix < 0 || ix > len(r.origPosition) {
|
if ix < 0 || ix > len(r.origPosition) {
|
||||||
return -1
|
return -1
|
||||||
|
|
Loading…
Reference in New Issue