summaryrefslogtreecommitdiffstats
path: root/Doc/library/enum.rst
diff options
context:
space:
mode:
authorNoam Cohen <noam@noam.me>2023-01-12 15:40:29 (GMT)
committerGitHub <noreply@github.com>2023-01-12 15:40:29 (GMT)
commit2161bbf243983c625e8f24cdf43b757f2a21463b (patch)
tree0f8b664f527c00156125d8905511d87ca61098dd /Doc/library/enum.rst
parentd9dff4c8b5ab41c47af002ad7fb083c953e75f31 (diff)
downloadcpython-2161bbf243983c625e8f24cdf43b757f2a21463b.zip
cpython-2161bbf243983c625e8f24cdf43b757f2a21463b.tar.gz
cpython-2161bbf243983c625e8f24cdf43b757f2a21463b.tar.bz2
Fix typo in `enum` module documentation (#100992)
Diffstat (limited to 'Doc/library/enum.rst')
-rw-r--r--Doc/library/enum.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst
index 47d9e39..9d1a297 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.