8000 Apply suggestions from code review · python/cpython@3d81da0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3d81da0

Browse files
skirpichevekohilas
andcommitted
Apply suggestions from code review
Co-authored-by: Evan Kohilas <ekohilas@users.noreply.github.com>
1 parent 6e6a18e commit 3d81da0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/library/functions.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1222,7 +1222,7 @@ are always available. They are listed here in alphabetical order.
12221222

12231223
.. function:: max(iterable, /, *, key=None)
12241224
max(iterable, /, *, default, key=None)
1225-
max(arg1, arg2, *args, key=None)
1225+
max(arg1, arg2, /, *args, key=None)
12261226
12271227
Return the largest item in an iterable or the largest of two or more
12281228
arguments.
@@ -1260,7 +1260,7 @@ are always available. They are listed here in alphabetical order.
12601260

12611261
.. function:: min(iterable, /, *, key=None)
12621262
min(iterable, /, *, default, key=None)
1263-
min(arg1, arg2, *args, key=None)
1263+
min(arg1, arg2, /, *args, key=None)
12641264
12651265
Return the smallest item in an iterable or the smallest of two or more
12661266
arguments.

0 commit comments

Comments
 (0)
0