From 9c09805dcfa983531663c57cde268253bae2a051 Mon Sep 17 00:00:00 2001 From: Noam Cohen Date: Thu, 12 Jan 2023 17:27:11 +0200 Subject: [PATCH] fix typo --- 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 47d9e39305d0fd..9d1a297a903ac5 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -827,7 +827,7 @@ Utilities and Decorators ``_generate_next_value_`` can be overridden to customize the values used by *auto*. - .. note:: in 3.13 the default ``"generate_next_value_`` will always return + .. note:: in 3.13 the default ``_generate_next_value_`` will always return the highest member value incremented by 1, and will fail if any member is an incompatible type.