From 5e52778b1a2a86fe89578b957b1898d165a350fe Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Tue, 17 Jan 2023 02:59:35 -0800 Subject: [PATCH] Fix typo in `ReprEnum` documentation (GH-101079) (cherry picked from commit c5660ae96f2ab5732c68c301ce9a63009f432d93) Co-authored-by: Viicos <65306057+Viicos@users.noreply.github.com> --- 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 0768914c2a9e..0456e74748c3 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -613,7 +613,7 @@ Data Types .. class:: ReprEnum - :class:`!ReprEum` uses the :meth:`repr() ` of :class:`Enum`, + :class:`!ReprEnum` uses the :meth:`repr() ` of :class:`Enum`, but the :class:`str() ` of the mixed-in data type: * :meth:`!int.__str__` for :class:`IntEnum` and :class:`IntFlag` -- 2.47.3