Skip to content

Commit 38f5b0b

Browse files
committed
typo
1 parent 3866d09 commit 38f5b0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

algorithms/cpp/findMinimumInRotatedSortedArray/findMinimumInRotatedSortedArray.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ int findMin(vector<int> &num) {
3838
}
3939

4040
// The array is rotated
41-
// Spli it into two part, the minimal value must be the rotated part
41+
// Split it into two part, the minimal value must be the rotated part
4242

4343
// if the left part is rotated, warch the left part
4444
if (num[low] > num [mid]){

0 commit comments

Comments
 (0)