]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-114231: Fix indentation in enum.rst (#114232)
authorMiyashita Yosuke <44266492+miyashiiii@users.noreply.github.com>
Thu, 18 Jan 2024 09:23:15 +0000 (18:23 +0900)
committerGitHub <noreply@github.com>
Thu, 18 Jan 2024 09:23:15 +0000 (09:23 +0000)
Doc/library/enum.rst

index 20222bfb3611ab93183bae0acae373fe5b2d5f6f..07b15e23b2c10a4f905efbbf655cd46b02cd725a 100644 (file)
@@ -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)