diff options
author | Miyashita Yosuke <44266492+miyashiiii@users.noreply.github.com> | 2024-01-18 09:23:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-18 09:23:15 (GMT) |
commit | ba683c22ecd035a1090f9fc7aba48d54854d23bd (patch) | |
tree | 6c6b40545c4c4b33e9aab2da0586f00f523f9eb6 /Doc | |
parent | 6f4b242a03e521a55f0b9e440703b424ed18ce2f (diff) | |
download | cpython-ba683c22ecd035a1090f9fc7aba48d54854d23bd.zip cpython-ba683c22ecd035a1090f9fc7aba48d54854d23bd.tar.gz cpython-ba683c22ecd035a1090f9fc7aba48d54854d23bd.tar.bz2 |
gh-114231: Fix indentation in enum.rst (#114232)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/enum.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index 20222bf..07b15e2 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -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) |