diff options
author | Nick <Nikki1993@users.noreply.github.com> | 2023-10-23 07:56:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-23 07:56:36 (GMT) |
commit | c84b0390c053446b746b65ec82755918955e79e0 (patch) | |
tree | f69be8231f1b2c3fd702bd69ce55669eca167ef5 /Doc | |
parent | 1172d02f9fbfe9e1bc0d45214f8aba8e7430d723 (diff) | |
download | cpython-c84b0390c053446b746b65ec82755918955e79e0.zip cpython-c84b0390c053446b746b65ec82755918955e79e0.tar.gz cpython-c84b0390c053446b746b65ec82755918955e79e0.tar.bz2 |
gh-110383: Italicize variable name (#111206)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/howto/regex.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/regex.rst b/Doc/howto/regex.rst index 15372e7..5e2f9a9 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 |