diff options
author | Rafael Fontenelle <rffontenelle@users.noreply.github.com> | 2020-10-29 20:48:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-29 20:48:21 (GMT) |
commit | b76a8400217827e604ebb543f45156f3caacd9a0 (patch) | |
tree | fd5bd229ad557da33e037e12dbb765951742c303 /Doc | |
parent | 5776663675b48f011d428a5874cc3c79d1deb59e (diff) | |
download | cpython-b76a8400217827e604ebb543f45156f3caacd9a0.zip cpython-b76a8400217827e604ebb543f45156f3caacd9a0.tar.gz cpython-b76a8400217827e604ebb543f45156f3caacd9a0.tar.bz2 |
bpo-42180: fix plural in arguments and control (GH-23015)
https://bugs.python.org/issue42180
Diffstat (limited to 'Doc')
-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 52a1512..a8a4ca4 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -259,7 +259,7 @@ are always available. They are listed here in alphabetical order. interactive statement (in the latter case, expression statements that evaluate to something other than ``None`` will be printed). - The optional argument *flags* and *dont_inherit* controls which + The optional arguments *flags* and *dont_inherit* control which :ref:`compiler options <ast-compiler-flags>` should be activated and which :ref:`future features <future>` should be allowed. If neither is present (or both are zero) the code is compiled with the same flags that |