Skip to content

Commit 0285dd6

Browse files
authored
fix html tag (#8330)
1 parent 10519c2 commit 0285dd6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/front-door/azext_front_door/_params.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def load_arguments(self, _):
156156
c.argument('custom_host', help='Host to redirect. Leave empty to use use the incoming host as the destination host.')
157157
c.argument('custom_path', help='The full path to redirect. Path cannot be empty and must start with /. Leave empty to use the incoming path as destination path.')
158158
c.argument('custom_fragment', help='Fragment to add to the redirect URL. Fragment is the part of the URL that comes after #. Do not include the #.')
159-
c.argument('custom_query_string', help='The set of query strings to be placed in the redirect URL. Setting this value would replace any existing query string; leave empty to preserve the incoming query string. Query string must be in <key>=<value> format. The first ? and & will be added automatically so do not include them in the front, but do separate multiple query strings with &.')
159+
c.argument('custom_query_string', help='The set of query strings to be placed in the redirect URL. Setting this value would replace any existing query string; leave empty to preserve the incoming query string. Query string must be in `<key>=<value>` format. The first ? and & will be added automatically so do not include them in the front, but do separate multiple query strings with &.')
160160
# endregion
161161

162162
# region WafPolicy
@@ -321,7 +321,7 @@ def load_arguments(self, _):
321321
c.argument('custom_host', help='Host to redirect. Leave empty to use use the incoming host as the destination host.')
322322
c.argument('custom_path', help='The full path to redirect. Path cannot be empty and must start with /. Leave empty to use the incoming path as destination path.')
323323
c.argument('custom_fragment', help='Fragment to add to the redirect URL. Fragment is the part of the URL that comes after #. Do not include the #.')
324-
c.argument('custom_query_string', help='The set of query strings to be placed in the redirect URL. Setting this value would replace any existing query string; leave empty to preserve the incoming query string. Query string must be in <key>=<value> format. The first ? and & will be added automatically so do not include them in the front, but do separate multiple query strings with &.')
324+
c.argument('custom_query_string', help='The set of query strings to be placed in the redirect URL. Setting this value would replace any existing query string; leave empty to preserve the incoming query string. Query string must be in `<key>=<value>` format. The first ? and & will be added automatically so do not include them in the front, but do separate multiple query strings with &.')
325325

326326
with self.argument_context('network front-door rules-engine rule condition remove') as c:
327327
c.argument('index', type=int, help='0-based index of the match condition to remove')

0 commit comments

Comments
 (0)