diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-01-18 09:29:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-18 09:29:44 (GMT) |
commit | 9887b0c39630a727a838eef85543173a5467d855 (patch) | |
tree | 69d8b8c26a5e71555515bbfe80c65f0fef25e0b3 | |
parent | f49a1ce6b2008d8cccc0bc874f0cc20848004307 (diff) | |
download | cpython-9887b0c39630a727a838eef85543173a5467d855.zip cpython-9887b0c39630a727a838eef85543173a5467d855.tar.gz cpython-9887b0c39630a727a838eef85543173a5467d855.tar.bz2 |
[3.11] gh-114231: Fix indentation in enum.rst (GH-114232) (#114235)
Co-authored-by: Miyashita Yosuke <44266492+miyashiiii@users.noreply.github.com>
-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 8fb97ea..deabc44 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -811,7 +811,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) |