summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
Diffstat (limited to 'Doc')
-rw-r--r--Doc/howto/enum.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/enum.rst b/Doc/howto/enum.rst
index 9ece93e..b0eea55 100644
--- a/Doc/howto/enum.rst
+++ b/Doc/howto/enum.rst
@@ -286,7 +286,7 @@ overridden::
... EAST = auto()
... WEST = auto()
...
- >>> [member.value for member in Color]
+ >>> [member.value for member in Ordinal]
['NORTH', 'SOUTH', 'EAST', 'WEST']
.. note::