We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d91edc9 commit 6be276fCopy full SHA for 6be276f
src/algorithms/sorting/bubble-sort/README.md
@@ -3,9 +3,10 @@
3
Bubble sort, sometimes referred to as sinking sort, is a
4
simple sorting algorithm that repeatedly steps through
5
the list to be sorted, compares each pair of adjacent
6
-items and swaps them if they are in the wrong order(ascending or descending arrangement).
7
-The pass through the list is repeated until no swaps
8
-are needed, which indicates that the list is sorted.
+items and swaps them if they are in the wrong order
+(ascending or descending arrangement). The pass through
+the list is repeated until no swaps are needed, which
9
+indicates that the list is sorted.
10
11

12
0 commit comments