Skip to content

Commit ba683c2

Browse files
authored
gh-114231: Fix indentation in enum.rst (#114232)
1 parent 6f4b242 commit ba683c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/enum.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -838,7 +838,7 @@ Utilities and Decorators
838838

839839
* ``FIRST = auto()`` will work (auto() is replaced with ``1``);
840840
* ``SECOND = auto(), -2`` will work (auto is replaced with ``2``, so ``2, -2`` is
841-
used to create the ``SECOND`` enum member;
841+
used to create the ``SECOND`` enum member;
842842
* ``THREE = [auto(), -3]`` will *not* work (``<auto instance>, -3`` is used to
843843
create the ``THREE`` enum member)
844844

0 commit comments

Comments
 (0)