From 93d606bf9c38e676cfeda99b7358c611c25999c2 Mon Sep 17 00:00:00 2001 From: Nick Date: Mon, 23 Oct 2023 10:56:36 +0300 Subject: [PATCH] gh-110383: Italicize variable name (GH-111206) (cherry picked from commit c84b0390c053446b746b65ec82755918955e79e0) Co-authored-by: Nick --- Doc/howto/regex.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/howto/regex.rst b/Doc/howto/regex.rst index 15372e74d6fedf..5e2f9a9d1837fe 100644 --- a/Doc/howto/regex.rst +++ b/Doc/howto/regex.rst @@ -245,7 +245,7 @@ You can omit either *m* or *n*; in that case, a reasonable value is assumed for the missing value. Omitting *m* is interpreted as a lower limit of 0, while omitting *n* results in an upper bound of infinity. -The simplest case ``{m}`` matches the preceding item exactly **m** times. +The simplest case ``{m}`` matches the preceding item exactly *m* times. For example, ``a/{2}b`` will only match ``'a//b'``. Readers of a reductionist bent may notice that the three other quantifiers can