Skip to content

Commit 842cf9f

Browse files
committed
nothing
1 parent e6f3347 commit 842cf9f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

javascript/4_array-programs/findRotationCount.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,10 @@
8484

8585
// Decide the side to search
8686
if (arr[mid] >= arr[start]) {
87-
// The rotation point is in the right half
87+
// The rotation point is in the right half
8888
start = mid + 1;
8989
} else {
90-
// The rotation point is in the left half
90+
// The rotation point is in the left half
9191
end = mid - 1;
9292
}
9393
}

0 commit comments

Comments
 (0)