Skip to content

Commit a8087a6

Browse files
committed
Fixed several typos throughout the codebase
Change-Id: I048ee857fc1215fea7f60978364894e1b5abdf66
1 parent 870e7dd commit a8087a6

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ prompted to provide one securely. If keyring is enabled, the password entered
9494
in the prompt is stored in keyring. From next time, the password is read from
9595
keyring, if it is not provided above (in plaintext).
9696

97-
The token flow variation for authentication uses an already-aquired token
97+
The token flow variation for authentication uses an already-acquired token
9898
and a URL pointing directly to the service API that presumably was acquired
9999
from the Service Catalog::
100100

openstackclient/identity/v2_0/project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ def take_action(self, parsed_args):
214214
if 'id' in kwargs:
215215
del kwargs['id']
216216
if 'name' in kwargs:
217-
# Hack around borken Identity API arg names
217+
# Hack around broken Identity API arg names
218218
kwargs['tenant_name'] = kwargs['name']
219219
del kwargs['name']
220220

openstackclient/identity/v3/project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ def take_action(self, parsed_args):
251251
if 'id' in kwargs:
252252
del kwargs['id']
253253
if 'domain_id' in kwargs:
254-
# Hack around borken Identity API arg names
254+
# Hack around broken Identity API arg names
255255
kwargs.update(
256256
{'domain': kwargs.pop('domain_id')}
257257
)

openstackclient/tests/common/test_parseractions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def test_error_values(self):
8888

8989
failhere = None
9090
actual = getattr(results, 'property', {})
91-
# Verify non-existant red key
91+
# Verify non-existent red key
9292
try:
9393
failhere = actual['red']
9494
except Exception as e:

0 commit comments

Comments
 (0)