summaryrefslogtreecommitdiffstats
path: root/Doc/library/re.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/re.rst')
-rw-r--r--Doc/library/re.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/re.rst b/Doc/library/re.rst
index 762ca49..dd790e7 100644
--- a/Doc/library/re.rst
+++ b/Doc/library/re.rst
@@ -317,7 +317,7 @@ The special characters are:
optional and can be omitted. For example,
``(<)?(\w+@\w+(?:\.\w+)+)(?(1)>|$)`` is a poor email matching pattern, which
will match with ``'<user@host.com>'`` as well as ``'user@host.com'``, but
- not with ``'<user@host.com'`` nor ``'user@host.com>'`` .
+ not with ``'<user@host.com'`` nor ``'user@host.com>'``.
The special sequences consist of ``'\'`` and a character from the list below.