diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-04-01 00:10:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-01 00:10:37 (GMT) |
commit | a2fb286b8632127a37f5bb6e63e334e8356161b9 (patch) | |
tree | ce37a486d29462bdcf93e464c9b8a09fab7c9cc3 | |
parent | e143eea4b56ac7ae611e5bcc41eedbc572aa41c3 (diff) | |
download | cpython-a2fb286b8632127a37f5bb6e63e334e8356161b9.zip cpython-a2fb286b8632127a37f5bb6e63e334e8356161b9.tar.gz cpython-a2fb286b8632127a37f5bb6e63e334e8356161b9.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
(cherry picked from commit f193874056fb185305084b79b32d2745ce9be7cf)
Co-authored-by: Mariatta Wijaya <Mariatta@users.noreply.github.com>
-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 c7e2b10..40499eb 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -276,7 +276,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. |