summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-01-18 09:29:44 (GMT)
committerGitHub <noreply@github.com>2024-01-18 09:29:44 (GMT)
commit9887b0c39630a727a838eef85543173a5467d855 (patch)
tree69d8b8c26a5e71555515bbfe80c65f0fef25e0b3
parentf49a1ce6b2008d8cccc0bc874f0cc20848004307 (diff)
downloadcpython-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.rst2
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)