We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 090ecc0 commit 4ee6dcdCopy full SHA for 4ee6dcd
merge_insertion/__init__.py
@@ -131,8 +131,8 @@ def _ident_find(array :Sequence[T], item :T) -> int:
131
async def merge_insertion_sort(array :Sequence[T], comparator :Comparator) -> Sequence[T]:
132
"""Merge-Insertion Sort (Ford-Johnson algorithm) with async comparison.
133
134
- :param array: Array of to sort. Duplicate items are not allowed.
135
- :param comparator: Async comparison function.
+ :param array: Array to sort. **Duplicate items are not allowed.**
+ :param comparator: Async comparison function as described in :class:`Comparator`.
136
:return: A shallow copy of the array sorted in ascending order.
137
"""
138
if len(array)<1:
0 commit comments