From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 18 Jan 2024 09:29:34 +0000 (+0100) Subject: [3.12] gh-114231: Fix indentation in enum.rst (GH-114232) (#114234) X-Git-Tag: v3.12.2~146 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=55b73a5c78209cda7bafd0aa472b2ab89068b7ef;p=thirdparty%2FPython%2Fcpython.git [3.12] gh-114231: Fix indentation in enum.rst (GH-114232) (#114234) Co-authored-by: Miyashita Yosuke <44266492+miyashiiii@users.noreply.github.com> --- diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index 57e1f581d4ea..3b874594b14f 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)