From ab79db1571a937c1e9d2354592f846cdfc1b3405 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 2cc17b4f745cb6..b69d19e212bdc9 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