]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] gh-114231: Fix indentation in enum.rst (GH-114232) (#114234)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 18 Jan 2024 09:29:34 +0000 (10:29 +0100)
committerGitHub <noreply@github.com>
Thu, 18 Jan 2024 09:29:34 +0000 (09:29 +0000)
Co-authored-by: Miyashita Yosuke <44266492+miyashiiii@users.noreply.github.com>
Doc/library/enum.rst

index 57e1f581d4ea0e57b792a179df8b4ecda9b29a97..3b874594b14f9c4f3b012a0092a1d1246514ce0f 100644 (file)
@@ -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)