From: Pablo Galindo Date: Mon, 25 Jan 2021 23:23:30 +0000 (+0000) Subject: Fix minor typo in the rest format in the enum docs (GH-24335) X-Git-Tag: v3.10.0a5~44 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c92cd0f3c8bab4e26a95cd29c127668907ff0869;p=thirdparty%2FPython%2Fcpython.git Fix minor typo in the rest format in the enum docs (GH-24335) --- diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index b27c5527c7f7..4d6f2c363361 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -1364,7 +1364,7 @@ The code sample:: True There is a new boundary mechanism that controls how out-of-range / invalid -bits are handled: ``STRICT``, ``CONFORM``, ``EJECT`', and ``KEEP``: +bits are handled: ``STRICT``, ``CONFORM``, ``EJECT``, and ``KEEP``: * STRICT --> raises an exception when presented with invalid values * CONFORM --> discards any invalid bits