From bfae23fc18f6f60de7fde083ea097bf0c1912316 Mon Sep 17 00:00:00 2001 From: Oscar Utbult Date: Sat, 17 Sep 2022 22:58:01 +0200 Subject: [PATCH] grammar: replace all occurrences of "the the" with "the" Kubernetes-commit: e4f776f23098ecf942cafa898777195adbc800f1 --- pkg/cmd/get/sorter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/get/sorter.go b/pkg/cmd/get/sorter.go index b083bf4d..9f9e2b80 100644 --- a/pkg/cmd/get/sorter.go +++ b/pkg/cmd/get/sorter.go @@ -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