Skip to content

Commit

Permalink
fix help message tag format
Browse files Browse the repository at this point in the history
  • Loading branch information
AllyW committed Sep 20, 2024
1 parent 9f506a3 commit 6fa5909
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/azure-cli-core/azure/cli/core/aaz/_arg.py
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ def _build_cmd_action(self):


class AAZGenericUpdateSetArg(AAZGenericUpdateArg):
_example = '--set property1.property2=<value>'
_example = '`--set property1.property2=<value>`'

def __init__(
self, options=('--set',), arg_group='Generic Update',
Expand All @@ -653,7 +653,7 @@ class Action(AAZGenericUpdateAction):


class AAZGenericUpdateAddArg(AAZGenericUpdateArg):
_example = '--add property.listProperty <key=value, string or JSON string>'
_example = '`--add property.listProperty <key=value, string or JSON string>`'

def __init__(
self, options=('--add',), arg_group='Generic Update',
Expand All @@ -680,7 +680,7 @@ class Action(AAZGenericUpdateAction):


class AAZGenericUpdateRemoveArg(AAZGenericUpdateArg):
_example = '--remove property.list <indexToRemove> OR --remove propertyToRemove'
_example = '`--remove property.list <indexToRemove>` OR `--remove propertyToRemove`'

def __init__(
self, options=('--remove', ), arg_group='Generic Update',
Expand Down

0 comments on commit 6fa5909

Please sign in to comment.