diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2023-04-11 13:50:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-11 13:50:25 (GMT) |
commit | 50b4b1598411ed393f47ce7f4fffbe5b9063cd42 (patch) | |
tree | c30a5e53040a4dfe321e09af0a7a5ce932c3e8cf /Doc/glossary.rst | |
parent | 55c99d97e14618dfce41472dd4446f763b0da13f (diff) | |
download | cpython-50b4b1598411ed393f47ce7f4fffbe5b9063cd42.zip cpython-50b4b1598411ed393f47ce7f4fffbe5b9063cd42.tar.gz cpython-50b4b1598411ed393f47ce7f4fffbe5b9063cd42.tar.bz2 |
gh-87864: Use correct function definition syntax in the docs (#103312)
Diffstat (limited to 'Doc/glossary.rst')
-rw-r--r-- | Doc/glossary.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 3d74d55..53e8cdc 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -214,7 +214,7 @@ Glossary A callable is an object that can be called, possibly with a set of arguments (see :term:`argument`), with the following syntax:: - callable(argument1, argument2, ...) + callable(argument1, argument2, argumentN) A :term:`function`, and by extension a :term:`method`, is a callable. An instance of a class that implements the :meth:`~object.__call__` |