Skip to content

Commit 523192c

Browse files
Revert "Fix return type description in bubble_sort.py (#14137)"
This reverts commit 589d129.
1 parent 589d129 commit 523192c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sorts/bubble_sort.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def bubble_sort_iterative(collection: list[Any]) -> list[Any]:
66
77
:param collection: some mutable ordered collection with heterogeneous
88
comparable items inside
9-
:return: the same collection ordered in ascending order
9+
:return: the same collection ordered by ascending
1010
1111
Examples:
1212
>>> bubble_sort_iterative([0, 5, 2, 3, 2])

0 commit comments

Comments
 (0)