Merge "Fix a missing '\' in doc"

This commit is contained in:
Jenkins 2016-02-22 23:03:45 +00:00 committed by Gerrit Code Review
commit e56537ad29
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ Any valid regular expression may be added to the blacklists table. Here are some
This will block the "example.com." domain, but will not block any sub-domains, e.g. "my.example.com." or anything
else containing example.com, such as, "myexample.com."
#. ``^([A-Za-z0-9_\-]+\\.)*example\\.com\\.$``
#. ``^([A-Za-z0-9_\\-]+\\.)*example\\.com\\.$``
This will block "example.com." and all sub-domains, e.g. "my.example.com.", but anything else containing
example.com, will not be blocked, such as, "myexample.com."