aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/algorithms/impl
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2016-04-17 23:31:13 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2016-04-17 23:31:13 +0300
commit5db3ee78cfa8618265deb162b0ba64e8a7ad04cc (patch)
treef4a2cc3a4dfc450b89f33b8c7351c522cecb0ba2 /algorithms/impl
parentREADME update (diff)
downloadsorting-algorithms-5db3ee78cfa8618265deb162b0ba64e8a7ad04cc.tar.gz
sorting-algorithms-5db3ee78cfa8618265deb162b0ba64e8a7ad04cc.zip
selection_sort: fix codename
Diffstat (limited to 'algorithms/impl')
-rw-r--r--algorithms/impl/selection_sort.py2
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),
]