summaryrefslogtreecommitdiffstats
path: root/Doc/library/re.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-12-23 16:21:57 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-12-23 16:21:57 (GMT)
commit2a6145290be7aec586c170ce7e405fb3813f39fd (patch)
treee11049c936061e28d6a3ca57c5b132f2c1205531 /Doc/library/re.rst
parentae2ee96ad797435963e9aa13d54d52db765486c9 (diff)
parenta4d170d985df52d3fedf908c158824c057c9b7c6 (diff)
downloadcpython-2a6145290be7aec586c170ce7e405fb3813f39fd.zip
cpython-2a6145290be7aec586c170ce7e405fb3813f39fd.tar.gz
cpython-2a6145290be7aec586c170ce7e405fb3813f39fd.tar.bz2
Removed spaces before commas and periods.
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 9dc88528..1fa1cc0 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.