Merge "Fixed several typos throughout the codebase"

This commit is contained in:
Jenkins 2014-05-28 23:05:54 +00:00 committed by Gerrit Code Review
commit fb65652753
4 changed files with 4 additions and 4 deletions

View File

@ -94,7 +94,7 @@ prompted to provide one securely. If keyring is enabled, the password entered
in the prompt is stored in keyring. From next time, the password is read from
keyring, if it is not provided above (in plaintext).
The token flow variation for authentication uses an already-aquired token
The token flow variation for authentication uses an already-acquired token
and a URL pointing directly to the service API that presumably was acquired
from the Service Catalog::

View File

@ -214,7 +214,7 @@ class SetProject(command.Command):
if 'id' in kwargs:
del kwargs['id']
if 'name' in kwargs:
# Hack around borken Identity API arg names
# Hack around broken Identity API arg names
kwargs['tenant_name'] = kwargs['name']
del kwargs['name']

View File

@ -251,7 +251,7 @@ class SetProject(command.Command):
if 'id' in kwargs:
del kwargs['id']
if 'domain_id' in kwargs:
# Hack around borken Identity API arg names
# Hack around broken Identity API arg names
kwargs.update(
{'domain': kwargs.pop('domain_id')}
)

View File

@ -88,7 +88,7 @@ class TestKeyValueAction(utils.TestCase):
failhere = None
actual = getattr(results, 'property', {})
# Verify non-existant red key
# Verify non-existent red key
try:
failhere = actual['red']
except Exception as e: