From ec39ee852b06de485ad6aff69690d3e2d0ec6e6b Mon Sep 17 00:00:00 2001 From: Victorien <65306057+Viicos@users.noreply.github.com> Date: Sun, 9 Feb 2025 22:05:08 +0100 Subject: [PATCH] Fix typo in `enum` documentation --- 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 8ca949368db4ff..c9b2c7d76b6746 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)