diff options
author | Bruno Neyra <112962296+blv-brunoneyra@users.noreply.github.com> | 2022-11-09 00:39:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-09 00:39:56 (GMT) |
commit | b3bd69c1bfb431fe75cc301f97494f9f98df2a19 (patch) | |
tree | 244f148c923bd4691ad49415a327853daf6cdc9f /Doc/howto | |
parent | 2eee9d9cd7eb1e396fa9a4af7c5fadeeafbdaa38 (diff) | |
download | cpython-b3bd69c1bfb431fe75cc301f97494f9f98df2a19.zip cpython-b3bd69c1bfb431fe75cc301f97494f9f98df2a19.tar.gz cpython-b3bd69c1bfb431fe75cc301f97494f9f98df2a19.tar.bz2 |
[Enum] Typo: fix DuplicateFreeEnum example docs (GH-99265)
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/enum.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/enum.rst b/Doc/howto/enum.rst index 03f0565..5c2fc6f 100644 --- a/Doc/howto/enum.rst +++ b/Doc/howto/enum.rst @@ -1299,7 +1299,7 @@ enumerations):: DuplicateFreeEnum ^^^^^^^^^^^^^^^^^ -Raises an error if a duplicate member name is found instead of creating an +Raises an error if a duplicate member value is found instead of creating an alias:: >>> class DuplicateFreeEnum(Enum): |