From 0ad2c6e8f333159e64561ec96ab1a0c0212cf182 Mon Sep 17 00:00:00 2001 From: Mohan Murali Date: Sat, 4 Sep 2021 00:18:49 -0700 Subject: [PATCH] Update BubbleSort.js Corrected spelling mistake --- Sorts/BubbleSort.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sorts/BubbleSort.js b/Sorts/BubbleSort.js index 390ef7912..26d2daea6 100644 --- a/Sorts/BubbleSort.js +++ b/Sorts/BubbleSort.js @@ -1,5 +1,5 @@ /* Bubble Sort is an algorithm to sort an array. It -* compares adjacent element and swaps thier position +* compares adjacent element and swaps their position * The big O on bubble sort in worst and best case is O(N^2). * Not efficient. *