Skip to content

Commit 4ee6dcd

Browse files
committed
Minor doc update
1 parent 090ecc0 commit 4ee6dcd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

merge_insertion/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ def _ident_find(array :Sequence[T], item :T) -> int:
131131
async def merge_insertion_sort(array :Sequence[T], comparator :Comparator) -> Sequence[T]:
132132
"""Merge-Insertion Sort (Ford-Johnson algorithm) with async comparison.
133133
134-
:param array: Array of to sort. Duplicate items are not allowed.
135-
:param comparator: Async comparison function.
134+
:param array: Array to sort. **Duplicate items are not allowed.**
135+
:param comparator: Async comparison function as described in :class:`Comparator`.
136136
:return: A shallow copy of the array sorted in ascending order.
137137
"""
138138
if len(array)<1:

0 commit comments

Comments
 (0)