Fix a missing '\' in doc

Change-Id: If3b571b5dfc44aaebbe5ce643c3aba0660186347
This commit is contained in:
James Li 2016-02-17 16:09:13 +00:00
parent d00328bac3
commit a7047517b3
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."