Skip to content

Commit 1e788dd

Browse files
miyashiiiikulikjak
authored andcommitted
pythongh-114231: Fix indentation in enum.rst (python#114232)
1 parent 4e98d55 commit 1e788dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/enum.rst

Lines changed: 1 addition & 1 deletion
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)