Skip to content

Commit 1a9f96a

Browse files
committed
Fix comment wording
1 parent a34f7f1 commit 1a9f96a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sorting_algorithms.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33

44
def top_down_mergesort(arr: List[float]) -> List[float]:
5-
# Cutoff chosen based on runtime improvement consistency after various tests.
5+
# Cutoff chosen based on execution time improvement consistency
6+
# after various tests.
67
insertion_sort_cutoff = 15
78

89
def sort(lo: int, hi: int):

0 commit comments

Comments
 (0)