From: Victorien <65306057+Viicos@users.noreply.github.com> Date: Sun, 9 Feb 2025 21:48:11 +0000 (+0100) Subject: Fix typo in `enum` documentation (#129920) X-Git-Tag: v3.14.0a5~24 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d05053a203d922c8056f12ef3c9338229fdce043;p=thirdparty%2FPython%2Fcpython.git Fix typo in `enum` documentation (#129920) --- diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index 8ca949368db4..c9b2c7d76b67 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -668,7 +668,7 @@ Data Types * the result is a valid *IntFlag*: an *IntFlag* is returned * the result is not a valid *IntFlag*: the result depends on the :class:`FlagBoundary` setting - The :func:`repr` of unnamed zero-valued flags has changed. It is now: + The :func:`repr` of unnamed zero-valued flags has changed. It is now:: >>> Color(0)