diff options
author | Miss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-11-03 01:08:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-03 01:08:38 (GMT) |
commit | 6b7a90db362253d67201c2a438a3f38f1ec6180c (patch) | |
tree | 6992f00e167b8f1783679f87cf4f5c1c9361f4a5 | |
parent | e277cb76989958fdbc092bf0b2cb55c43e86610a (diff) | |
download | cpython-6b7a90db362253d67201c2a438a3f38f1ec6180c.zip cpython-6b7a90db362253d67201c2a438a3f38f1ec6180c.tar.gz cpython-6b7a90db362253d67201c2a438a3f38f1ec6180c.tar.bz2 |
bpo-42180: fix plural in arguments and control (GH-23015) (GH-23114)
https://bugs.python.org/issue42180
(cherry picked from commit b76a8400217827e604ebb543f45156f3caacd9a0)
Co-authored-by: Rafael Fontenelle <rffontenelle@users.noreply.github.com>
-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 2a54ce5..9c12b6c 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -245,7 +245,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 |