From 65b94532cec3e54fec9a748b6b8b280232cce6af Mon Sep 17 00:00:00 2001 From: Ilya Kulakov Date: Wed, 30 Nov 2022 12:30:22 -0800 Subject: [PATCH] gh-99308: Fix missing dot. --- Doc/library/re.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/re.rst b/Doc/library/re.rst index a3f18d9558e339..f49477c5907295 100644 --- a/Doc/library/re.rst +++ b/Doc/library/re.rst @@ -1021,7 +1021,7 @@ Functions .. versionchanged:: 3.12 Group *id* can only contain ASCII digits. In :class:`bytes` replacement strings, group *name* can only contain bytes - in the ASCII range (``b'\x00'``-``b'\x7f'``) + in the ASCII range (``b'\x00'``-``b'\x7f'``). .. function:: subn(pattern, repl, string, count=0, flags=0)