Skip to content

Commit 38a3733

Browse files
authored
fix html tags (#30611)
1 parent e8f875d commit 38a3733

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/azure-cli/azure/cli/command_modules/appservice/_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ def load_arguments(self, _):
667667
arg_group='Azure Active Directory', help="One or more token audiences (comma-delimited).")
668668
c.argument('issuer', options_list=['--aad-token-issuer-url'],
669669
help='This url can be found in the JSON output returned from your active directory endpoint using your tenantID. The endpoint can be queried from `az cloud show` at \"endpoints.activeDirectory\". '
670-
'The tenantID can be found using `az account show`. Get the \"issuer\" from the JSON at <active directory endpoint>/<tenantId>/.well-known/openid-configuration.',
670+
'The tenantID can be found using `az account show`. Get the \"issuer\" from the JSON at `<active directory endpoint>/<tenantId>/.well-known/openid-configuration`.',
671671
arg_group='Azure Active Directory')
672672
c.argument('facebook_app_id', arg_group='Facebook',
673673
help="Application ID to integrate Facebook Sign-in into your web app")

src/azure-cli/azure/cli/command_modules/rdbms/_params.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -434,8 +434,8 @@ def _flexible_server_params(command_group):
434434
'IP address ranges must be dash-separated and not contain any spaces. '
435435
'Specifying 0.0.0.0 allows public access from any resources deployed within Azure to access your server. '
436436
'Setting it to "None" sets the server in public access mode but does not create a firewall rule. '
437-
'Acceptable values are \'Disabled\', \'Enabled\', \'All\', \'None\',\'<startIP>\' and '
438-
'\'<startIP>-<destinationIP>\' where startIP and destinationIP ranges from '
437+
'Acceptable values are \'Disabled\', \'Enabled\', \'All\', \'None\',\'{startIP}\' and '
438+
'\'{startIP}-{destinationIP}\' where startIP and destinationIP ranges from '
439439
'0.0.0.0 to 255.255.255.255. ',
440440
validator=public_access_validator
441441
)

src/azure-cli/azure/cli/command_modules/storage/_help.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1865,7 +1865,7 @@
18651865
If using an integer value as a key, convert it to a fixed-width string which can be canonically sorted.
18661866
For example, convert the integer value 1 to the string value "0000001" to ensure proper sorting. \n
18671867
To manually specify the value type, an additional key,value pair can be added in the format of
1868-
[email protected]=<EdmType> where <EdmType> can be from the following list: Edm.Binary, Edm.Int64, Edm.Guid,
1868+
`[email protected]=<EdmType>` where `<EdmType>` can be from the following list: Edm.Binary, Edm.Int64, Edm.Guid,
18691869
Edm.DateTime, Edm.String, Edm.Int32, Edm.Double, Edm.Boolean
18701870
- name: --if-exists
18711871
type: string

0 commit comments

Comments
 (0)