grammar: replace all occurrences of "the the" with "the"

Kubernetes-commit: e4f776f23098ecf942cafa898777195adbc800f1
This commit is contained in:
Oscar Utbult 2022-09-17 22:58:01 +02:00 committed by Kubernetes Publisher
parent abd5295393
commit bfae23fc18
1 changed files with 1 additions and 1 deletions

View File

@ -336,7 +336,7 @@ func (r *RuntimeSort) Less(i, j int) bool {
// OriginalPosition returns the starting (original) position of a particular index.
// 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 {
if ix < 0 || ix > len(r.origPosition) {
return -1