From d05053a203d922c8056f12ef3c9338229fdce043 Mon Sep 17 00:00:00 2001 From: Victorien <65306057+Viicos@users.noreply.github.com> Date: Sun, 9 Feb 2025 22:48:11 +0100 Subject: [PATCH] Fix typo in `enum` documentation (#129920) --- 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 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) -- 2.47.3