Skip to content

Commit 76193a6

Browse files
author
alx
committed
Formatting has been fixed
1 parent 0427739 commit 76193a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/thealgorithms/sorts/BinaryInsertionSort.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public <T extends Comparable<T>> T[] sort(T[] array) {
1111

1212
while (low <= high) {
1313
final int mid = (low + high) >>> 1;
14-
if (temp.compareTo(array[mid]) < 0 ) {
14+
if (temp.compareTo(array[mid]) < 0) {
1515
high = mid - 1;
1616
} else {
1717
low = mid + 1;

0 commit comments

Comments
 (0)