Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Sorts/bubblesort.js
Original file line number Diff line number Diff line change
@@ -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;
Expand Down