From 9bf5da8f75398584ebb54306454e9cc385ccc4f4 Mon Sep 17 00:00:00 2001 From: Tom Janson Date: Thu, 28 Jul 2022 21:27:51 +0200 Subject: [PATCH] Fix escaped asterisk in code block demonstrating wildcards (#78375) The code block is rendered verbatim. This currently results in `\*` being shown, which is incorrect (i.e., not parsed as a wildcard pattern). Removing the superfluous `\` fixes the rendering. This PR fixes all instances of this issue on that page. --- docs/docsite/rst/user_guide/intro_patterns.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docsite/rst/user_guide/intro_patterns.rst b/docs/docsite/rst/user_guide/intro_patterns.rst index 3d0686da504..f4c209912bb 100644 --- a/docs/docsite/rst/user_guide/intro_patterns.rst +++ b/docs/docsite/rst/user_guide/intro_patterns.rst @@ -82,9 +82,9 @@ You can use wildcard patterns with FQDNs or IP addresses, as long as the hosts a .. code-block:: yaml - 192.0.\* - \*.example.com - \*.com + 192.0.* + *.example.com + *.com You can mix wildcard patterns and groups at the same time: