From b3bd69c1bfb431fe75cc301f97494f9f98df2a19 Mon Sep 17 00:00:00 2001 From: Bruno Neyra <112962296+blv-brunoneyra@users.noreply.github.com> Date: Tue, 8 Nov 2022 21:39:56 -0300 Subject: [PATCH] [Enum] Typo: fix DuplicateFreeEnum example docs (GH-99265) --- Doc/howto/enum.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/howto/enum.rst b/Doc/howto/enum.rst index 03f05657997cfd..5c2fc6f29c0f39 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):