Skip to content

Commit 5292039

Browse files
committed
updated indent and function highlighting
1 parent d85c9f5 commit 5292039

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Doc/howto/sorting.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -401,9 +401,9 @@ library provides several tools that do less work than a full sort:
401401
require almost no auxiliary memory.
402402

403403
* :func:`minmax` returns both the smallest and largest values,
404-
respectively. This functions make a single pass over the input data and
405-
require almost no auxiliary memory. This function is useful if both `min` and
406-
`max` need to be called and thus is more efficient for larger datasets.
404+
respectively. This functions make a single pass over the input data and
405+
require almost no auxiliary memory. This function is useful if both :meth:`min` and
406+
:meth:`max` need to be called and thus is more efficient for larger datasets.
407407

408408
* :func:`heapq.nsmallest` and :func:`heapq.nlargest` return
409409
the *n* smallest and largest values, respectively. These functions

0 commit comments

Comments
 (0)