fix typo in bubble sort descriptiion

This commit is contained in:
Abose Ukhun
2017-10-16 09:24:30 +01:00
parent daa37ba33f
commit 29d252e8e6

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;