diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index 8fb97ea9ed1c84..deabc44ac25f0f 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -811,7 +811,7 @@ Utilities and Decorators * ``FIRST = auto()`` will work (auto() is replaced with ``1``); * ``SECOND = auto(), -2`` will work (auto is replaced with ``2``, so ``2, -2`` is - used to create the ``SECOND`` enum member; + used to create the ``SECOND`` enum member; * ``THREE = [auto(), -3]`` will *not* work (``, -3`` is used to create the ``THREE`` enum member)