From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 1 Mar 2021 19:21:05 +0000 (-0800) Subject: Fix grammar in enum documentation. (GH-24689) X-Git-Tag: v3.9.3~69 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4f9eb3f3d3fab06ecf542c29e118c5086b7ec517;p=thirdparty%2FPython%2Fcpython.git 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 --- diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index 8836b24912e9..bbe8bdc82b40 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.