aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMariatta <Mariatta@users.noreply.github.com>2017-02-28 21:07:32 -0800
committerGitHub <noreply@github.com>2017-02-28 21:07:32 -0800
commit8458b2b4ef06805d65c9e253433727e60820992e (patch)
treef013fb025c0671629f1a66bf1bcacbbacb80723a
parentd413aa7893fd8ac64693c22deb2c1eee1840dbd7 (diff)
downloadcpython3-8458b2b4ef06805d65c9e253433727e60820992e.tar.gz
correct documentation for enum.html (GH-358) (GH-367)
(cherry picked from commit 626584284e74a68fff8157f9afe77b3088ff7be9)
-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 5cd6472f3e..6548adf789 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