Skip to content

Commit 9da916d

Browse files
authored
spelling mistake(minimum)
1 parent a8471ca commit 9da916d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/c07/p02_functions_that_only_accept_keyword_arguments.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
.. code-block:: python
2727
28-
def mininum(*values, clip=None):
28+
def minimum(*values, clip=None):
2929
m = min(values)
3030
if clip is not None:
3131
m = clip if clip > m else m

0 commit comments

Comments
 (0)