summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKartik Anand <kartikanand1992@gmail.com>2017-02-28 20:07:19 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2017-02-28 20:07:18 (GMT)
commit626584284e74a68fff8157f9afe77b3088ff7be9 (patch)
tree390c5066f92cdad5b8380a4bc9739cceefe7149f
parent81788e9a9766fbb7ef794214397969814b0d72d1 (diff)
downloadcpython-626584284e74a68fff8157f9afe77b3088ff7be9.zip
cpython-626584284e74a68fff8157f9afe77b3088ff7be9.tar.gz
cpython-626584284e74a68fff8157f9afe77b3088ff7be9.tar.bz2
correct documentation for enum.html (#358)
-rw-r--r--Doc/library/enum.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst
index 5cd6472..6548adf 100644
--- a/Doc/library/enum.rst
+++ b/Doc/library/enum.rst
@@ -24,8 +24,8 @@ Module Contents
---------------
This module defines four enumeration classes that can be used to define unique
-sets of names and values: :class:`Enum`, :class:`IntEnum`, and
-:class:`IntFlags`. It also defines one decorator, :func:`unique`, and one
+sets of names and values: :class:`Enum`, :class:`IntEnum`, :class:`Flag`, and
+:class:`IntFlag`. It also defines one decorator, :func:`unique`, and one
helper, :class:`auto`.
.. class:: Enum