diff options
author | Mariatta Wijaya <Mariatta@users.noreply.github.com> | 2021-03-01 18:56:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-01 18:56:03 (GMT) |
commit | f193874056fb185305084b79b32d2745ce9be7cf (patch) | |
tree | 96380c8295716a69ce54f1db92afdf4983f1e646 /Doc | |
parent | 8c9453b5759f7ab86a01fab13b03cef5900eb328 (diff) | |
download | cpython-f193874056fb185305084b79b32d2745ce9be7cf.zip cpython-f193874056fb185305084b79b32d2745ce9be7cf.tar.gz cpython-f193874056fb185305084b79b32d2745ce9be7cf.tar.bz2 |
Fix grammar in enum documentation. (GH-24689)
There is an extra `s` in the singular word `method`.
Reported in docs mailing list by Steven Nguyen.
Automerge-Triggered-By: GH:Mariatta
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/enum.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index 4d6f2c3..b7f2694 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -282,7 +282,7 @@ overridden:: .. note:: - The goal of the default :meth:`_generate_next_value_` methods is to provide + The goal of the default :meth:`_generate_next_value_` method is to provide the next :class:`int` in sequence with the last :class:`int` provided, but the way it does this is an implementation detail and may change. |