diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-04-17 23:31:13 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-04-17 23:31:13 +0300 |
commit | 5db3ee78cfa8618265deb162b0ba64e8a7ad04cc (patch) | |
tree | f4a2cc3a4dfc450b89f33b8c7351c522cecb0ba2 | |
parent | README update (diff) | |
download | sorting-algorithms-5db3ee78cfa8618265deb162b0ba64e8a7ad04cc.tar.gz sorting-algorithms-5db3ee78cfa8618265deb162b0ba64e8a7ad04cc.zip |
selection_sort: fix codename
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), ] |