diff options
author | Rafael Fontenelle <rffontenelle@users.noreply.github.com> | 2024-10-11 20:00:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-11 20:00:31 (GMT) |
commit | 76b29d271b3132bf8e13bc724f10be8c630057ba (patch) | |
tree | ccadfa810d34c71d718153b6e24dbf8983ba74dc | |
parent | cc2938a18967c9d462ebb18bc09f73e4364aa7d2 (diff) | |
download | cpython-76b29d271b3132bf8e13bc724f10be8c630057ba.zip cpython-76b29d271b3132bf8e13bc724f10be8c630057ba.tar.gz cpython-76b29d271b3132bf8e13bc724f10be8c630057ba.tar.bz2 |
Fix typo in ``Doclibrary/functions.rst`` (#125327)
-rw-r--r-- | Doc/library/functions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 7f8df70..0638df0 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -686,7 +686,7 @@ are always available. They are listed here in alphabetical order. The *closure* argument specifies a closure--a tuple of cellvars. It's only valid when the *object* is a code object containing :term:`free (closure) variables <closure variable>`. - The length of the tuple must exactly match the length of the code object'S + The length of the tuple must exactly match the length of the code object's :attr:`~codeobject.co_freevars` attribute. .. audit-event:: exec code_object exec |