Merge pull request #31 from bexis13/master

fix typo in bubble sort description
This commit is contained in:
Chetan Kaushik
2017-10-16 14:52:18 +05:30
committed by GitHub

View File

@ -1,5 +1,5 @@
/*Bubble Sort is a algorithm to sort a array it
* copares adjacent element and swaps thier position
/*Bubble Sort is a algorithm to sort an array. It
* compares adjacent element and swaps thier position
*/
function bubbleSort(items) {
var length = items.length;