Skip to content

Commit 3f532a2

Browse files
Hidekazu NakamuraSteve Martinelli
authored andcommitted
Remove backticks from help in role commands
the docs and code had inconsistencies with how it references other arguments, lets just remove the backticks from around them. Change-Id: I43d17b07364e45387c6b9d86c2aca26eeea8ed93
1 parent 1461c0e commit 3f532a2

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

doc/source/command-objects/role.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,21 @@ Add role to a user or group in a project or domain
2020
2121
.. option:: --domain <domain>
2222

23-
Include `<domain>` (name or ID)
23+
Include <domain> (name or ID)
2424

2525
.. versionadded:: 3
2626

2727
.. option:: --project <project>
2828

29-
Include `<project>` (name or ID)
29+
Include <project> (name or ID)
3030

3131
.. option:: --user <user>
3232

33-
Include `<user>` (name or ID)
33+
Include <user> (name or ID)
3434

3535
.. option:: --group <group>
3636

37-
Include `<group>` (name or ID)
37+
Include <group> (name or ID)
3838

3939
.. versionadded:: 3
4040

@@ -67,7 +67,7 @@ Add role to a user or group in a project or domain
6767

6868
.. describe:: <role>
6969

70-
Role to add to `<project>`:`<user>` (name or ID)
70+
Role to add to <project>:<user> (name or ID)
7171

7272
role create
7373
-----------
@@ -186,21 +186,21 @@ Remove role from domain/project : user/group
186186
187187
.. option:: --domain <domain>
188188

189-
Include `<domain>` (name or ID)
189+
Include <domain> (name or ID)
190190

191191
.. versionadded:: 3
192192

193193
.. option:: --project <project>
194194

195-
Include `<project>` (name or ID)
195+
Include <project> (name or ID)
196196

197197
.. option:: --user <user>
198198

199-
Include `<user>` (name or ID)
199+
Include <user> (name or ID)
200200

201201
.. option:: --group <group>
202202

203-
Include `<group>` (name or ID)
203+
Include <group> (name or ID)
204204

205205
.. versionadded:: 3
206206

openstackclient/identity/v3/role.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def _add_identity_and_resource_options_to_parser(parser):
3939
domain_or_project.add_argument(
4040
'--project',
4141
metavar='<project>',
42-
help='Include `<project>` (name or ID)',
42+
help='Include <project> (name or ID)',
4343
)
4444
user_or_group = parser.add_mutually_exclusive_group()
4545
user_or_group.add_argument(

0 commit comments

Comments
 (0)