Skip to content

Commit ce6b43e

Browse files
committed
fix: Rename to Quicksort
1 parent a87d0fa commit ce6b43e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
+2-2
Loading

src/animated/sorts/SortAlgorithmFactory.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public static AnimatedSortAlgorithm getSortingAlgorithm(Algorithms algorithm, do
1313

1414
public enum Algorithms {
1515
BUBBLE_SORT("Bubble Sort"), INSERTION_SORT("Insertion Sort"), SELECTION_SORT("Selection Sort"),
16-
MERGE_SORT("Merge Sort"), QUICK_SORT("Quick Sort");
16+
MERGE_SORT("Merge Sort"), QUICK_SORT("Quicksort");
1717

1818
private final String name;
1919

0 commit comments

Comments
 (0)