diff options
Diffstat (limited to '')
-rw-r--r-- | algorithms/impl/selection_sort.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/algorithms/impl/selection_sort.py b/algorithms/impl/selection_sort.py index d48c058..27b319f 100644 --- a/algorithms/impl/selection_sort.py +++ b/algorithms/impl/selection_sort.py @@ -18,5 +18,5 @@ if __name__ == '__main__': else: from algorithms.algorithm import SortingAlgorithm _ALGORITHMS = [ - SortingAlgorithm('selection', 'Selection sort', selection_sort), + SortingAlgorithm('selection_sort', 'Selection sort', selection_sort), ] |