@@ -634,9 +634,9 @@ are always available. They are listed here in alphabetical order.
634634 The optional keyword-only *key * argument specifies a one-argument ordering
635635 function like that used for :meth: `list.sort `.
636636
637- If multiple items are maximal, the function returns the first one encountered.
638- This is consistent with other sort-stability preserving tools such as
639- ``sorted(iterable, key=keyfunc, reverse=True)[0]` and
637+ If multiple items are maximal, the function returns the first one
638+ encountered. This is consistent with other sort-stability preserving tools
639+ such as ``sorted(iterable, key=keyfunc, reverse=True)[0] ` ` and
640640 ``heapq.nlargest(1, iterable, key=keyfunc) ``.
641641
642642.. function :: memoryview(obj)
@@ -655,10 +655,10 @@ are always available. They are listed here in alphabetical order.
655655 The optional keyword-only *key * argument specifies a one-argument ordering
656656 function like that used for :meth: `list.sort `.
657657
658- If multiple items are minimal, the function returns the first one encountered.
659- This is consistent with other sort-stability preserving tools such as
660- ``sorted(iterable, key=keyfunc)[0]` and
661- ``heapq.nsmallest(1, iterable, key=keyfunc) ``.
658+ If multiple items are minimal, the function returns the first one
659+ encountered. This is consistent with other sort-stability preserving tools
660+ such as ``sorted(iterable, key=keyfunc)[0] `` and `` heapq.nsmallest(1,
661+ iterable, key=keyfunc) ``.
662662
663663.. function :: next(iterator[, default])
664664
0 commit comments