Update 02_recursive_selection_sort.js (#119)

This commit is contained in:
Yury
2019-11-12 22:17:35 +07:00
committed by Aditya Bhargava
parent 878e26217d
commit 9b0288d791

View File

@@ -18,7 +18,7 @@ const findSmallest = ( arr ) => {
};
/**
* Sorts0 recursively an array of numbers
* Sorts recursively an array of numbers
* @param {Array} arr An array of numbers
* @return {Array} New sorted array
*/