Skip to content

Commit

Permalink
gh-114231: Fix indentation in enum.rst (#114232)
Browse files Browse the repository at this point in the history
  • Loading branch information
miyashiiii committed Jan 18, 2024
1 parent 6f4b242 commit ba683c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Doc/library/enum.rst
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,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 (``<auto instance>, -3`` is used to
create the ``THREE`` enum member)

Expand Down

0 comments on commit ba683c2

Please sign in to comment.