From: Miyashita Yosuke <44266492+miyashiiii@users.noreply.github.com> Date: Thu, 18 Jan 2024 09:23:15 +0000 (+0900) Subject: gh-114231: Fix indentation in enum.rst (#114232) X-Git-Tag: v3.13.0a4~432 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ba683c22ecd035a1090f9fc7aba48d54854d23bd;p=thirdparty%2FPython%2Fcpython.git gh-114231: Fix indentation in enum.rst (#114232) --- diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index 20222bfb3611..07b15e23b2c1 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -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 (``, -3`` is used to create the ``THREE`` enum member)