[Python-checkins] Fix grammar in enum documentation. (GH-24689)

miss-islington webhook-mailer at python.org
Mon Mar 1 13:56:12 EST 2021


https://github.com/python/cpython/commit/f193874056fb185305084b79b32d2745ce9be7cf
commit: f193874056fb185305084b79b32d2745ce9be7cf
branch: master
author: Mariatta Wijaya <Mariatta at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2021-03-01T10:56:03-08:00
summary:

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

files:
M Doc/library/enum.rst

diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst
index 4d6f2c3633613..b7f269464e794 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.
 



More information about the Python-checkins mailing list