From 9887b0c39630a727a838eef85543173a5467d855 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Thu, 18 Jan 2024 10:29:44 +0100 Subject: [PATCH] [3.11] gh-114231: Fix indentation in enum.rst (GH-114232) (#114235) 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 8fb97ea9ed1c..deabc44ac25f 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 (``, -3`` is used to create the ``THREE`` enum member) -- 2.47.3