https://github.com/python/cpython/commit/55b73a5c78209cda7bafd0aa472b2ab89068b7ef
commit: 55b73a5c78209cda7bafd0aa472b2ab89068b7ef
branch: 3.12
author: Miss Islington (bot) <[email protected]>
committer: hugovk <[email protected]>
date: 2024-01-18T09:29:34Z
summary:

[3.12] gh-114231: Fix indentation in enum.rst (GH-114232) (#114234)

Co-authored-by: Miyashita Yosuke <[email protected]>

files:
M Doc/library/enum.rst

diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst
index 57e1f581d4ea0e..3b874594b14f9c 100644
--- a/Doc/library/enum.rst
+++ b/Doc/library/enum.rst
@@ -820,7 +820,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)
 

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to