Removed spaces before commas and periods.

This commit is contained in:
Serhiy Storchaka 2013-12-23 18:21:57 +02:00
commit 2a6145290b
20 changed files with 22 additions and 22 deletions

View file

@ -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.