Fix some typos in comments

Change-Id: I392f123f5537fe50925e73780b6298d21c4df841
This commit is contained in:
Pierre-André MOREY 2016-08-26 12:17:00 +02:00
parent 6623fee9ed
commit 67cf54d47d
4 changed files with 4 additions and 4 deletions

View File

@ -705,7 +705,7 @@ def _domain_config_finder(conf_dir):
Domain configs match the filename pattern of Domain configs match the filename pattern of
'keystone.<domain_name>.conf'. 'keystone.<domain_name>.conf'.
:returns: generator yeilding (filename, domain_name) tuples :returns: generator yielding (filename, domain_name) tuples
""" """
LOG.info(_LI('Scanning %r for domain config files'), conf_dir) LOG.info(_LI('Scanning %r for domain config files'), conf_dir)
for r, d, f in os.walk(conf_dir): for r, d, f in os.walk(conf_dir):

View File

@ -50,7 +50,7 @@ user_create_v2 = {
} }
# NOTE(ghugo): minProperties value should really be 1, however it # NOTE(ghugo): minProperties value should really be 1, however it
# is currently set to 0 to avoid breaking backwards compatability, # is currently set to 0 to avoid breaking backwards compatibility,
# and tempest tests. # and tempest tests.
user_update_v2 = { user_update_v2 = {

View File

@ -3730,7 +3730,7 @@ class ImpliedRoleTests(AssignmentTestHelperMixin):
'entities': {'domains': {'users': 1, 'projects': 1, 'roles': 2}, 'entities': {'domains': {'users': 1, 'projects': 1, 'roles': 2},
'roles': 2}, 'roles': 2},
# Two level tree of implied roles, with the top and 1st level being # Two level tree of implied roles, with the top and 1st level being
# domain specific roles, and the bottom level being infered global # domain specific roles, and the bottom level being inferred global
# roles. # roles.
'implied_roles': [{'role': 0, 'implied_roles': [1]}, 'implied_roles': [{'role': 0, 'implied_roles': [1]},
{'role': 1, 'implied_roles': [2, 3]}], {'role': 1, 'implied_roles': [2, 3]}],

View File

@ -213,7 +213,7 @@ class IdentityTestFilteredCase(filtering.FilterTests,
""" """
# NOTE(lbragstad): Since Fernet tokens do not support sub-second # NOTE(lbragstad): Since Fernet tokens do not support sub-second
# precision we must freeze the clock and ensure we increment the time # precision we must freeze the clock and ensure we increment the time
# by a full second after a recovation event has occured. Otherwise the # by a full second after a recovation event has occurred. Otherwise the
# token will be considered revoked even though it is actually a valid # token will be considered revoked even though it is actually a valid
# token. # token.
time = datetime.datetime.utcnow() time = datetime.datetime.utcnow()