Skip to content

Commit 55b73a5

Browse files
[3.12] gh-114231: Fix indentation in enum.rst (GH-114232) (#114234)
Co-authored-by: Miyashita Yosuke <[email protected]>
1 parent e7a5577 commit 55b73a5

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
@@ -820,7 +820,7 @@ Utilities and Decorators
820820

821821
* ``FIRST = auto()`` will work (auto() is replaced with ``1``);
822822
* ``SECOND = auto(), -2`` will work (auto is replaced with ``2``, so ``2, -2`` is
823-
used to create the ``SECOND`` enum member;
823+
used to create the ``SECOND`` enum member;
824824
* ``THREE = [auto(), -3]`` will *not* work (``<auto instance>, -3`` is used to
825825
create the ``THREE`` enum member)
826826

0 commit comments

Comments
 (0)