From a7047517b33a6c095f801c117c6f1db2f6aa43ff Mon Sep 17 00:00:00 2001 From: James Li Date: Wed, 17 Feb 2016 16:09:13 +0000 Subject: [PATCH] Fix a missing '\' in doc Change-Id: If3b571b5dfc44aaebbe5ce643c3aba0660186347 --- doc/source/rest/v2/blacklists.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/rest/v2/blacklists.rst b/doc/source/rest/v2/blacklists.rst index 6bda9a885..6822e62bc 100644 --- a/doc/source/rest/v2/blacklists.rst +++ b/doc/source/rest/v2/blacklists.rst @@ -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."