diff --git a/Sorts/selectionSort.js b/Sorts/selectionSort.js index 065bd5e8a..46ba3e1e8 100644 --- a/Sorts/selectionSort.js +++ b/Sorts/selectionSort.js @@ -27,7 +27,7 @@ function selectionSort(items) { } } -//Implementation of bubbleSort +//Implementation of Selection Sort var ar = [5, 6, 7, 8, 1, 2, 12, 14]; //Array before Sort