Skip to content

Commit 9887b0c

Browse files
[3.11] gh-114231: Fix indentation in enum.rst (GH-114232) (#114235)
Co-authored-by: Miyashita Yosuke <[email protected]>
1 parent f49a1ce commit 9887b0c

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
@@ -811,7 +811,7 @@ Utilities and Decorators
811811

812812
* ``FIRST = auto()`` will work (auto() is replaced with ``1``);
813813
* ``SECOND = auto(), -2`` will work (auto is replaced with ``2``, so ``2, -2`` is
814-
used to create the ``SECOND`` enum member;
814+
used to create the ``SECOND`` enum member;
815815
* ``THREE = [auto(), -3]`` will *not* work (``<auto instance>, -3`` is used to
816816
create the ``THREE`` enum member)
817817

0 commit comments

Comments
 (0)