From c59654b2d7980f8f6ee2a4002e225d6a9de4f5bb Mon Sep 17 00:00:00 2001 From: Miyashita Yosuke <44266492+miyashiiii@users.noreply.github.com> Date: Thu, 18 Jan 2024 18:23:15 +0900 Subject: [PATCH] gh-114231: Fix indentation in enum.rst (GH-114232) (cherry picked from commit ba683c22ecd035a1090f9fc7aba48d54854d23bd) Co-authored-by: Miyashita Yosuke <44266492+miyashiiii@users.noreply.github.com> --- Doc/library/enum.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 (``, -3`` is used to create the ``THREE`` enum member)