From 00bb372525c4ec7a45b650c981c2bc9488c495ba Mon Sep 17 00:00:00 2001 From: Mariatta Wijaya Date: Mon, 1 Mar 2021 10:38:57 -0800 Subject: [PATCH] Fix grammar in enum documentation. There is an extra `s` in the singular word `method`. --- Doc/library/enum.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index 4d6f2c36336138..b7f269464e7945 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.