Fix typos in comments

suported => supported
proces => process
occured => occurred
do quota reserver => Reserve a quota

Change-Id: I97f1bfae8b62655b415ef8f61dc439416458d38d
This commit is contained in:
Takashi NATSUME 2015-09-09 17:34:25 +09:00
parent de64f5ad71
commit b0d3a61767
4 changed files with 4 additions and 4 deletions

View File

@ -264,7 +264,7 @@ class VolumeAdminController(AdminController):
"""Enable/Re-enable replication on replciation capable volume.
Admin only method, used primarily for cases like disable/re-enable
replication proces on a replicated volume for maintenance or testing
replication process on a replicated volume for maintenance or testing
"""
context = req.environ['cinder.context']

View File

@ -166,7 +166,7 @@ class API(base.Base):
if not self._is_backup_service_enabled(volume, volume_host):
raise exception.ServiceNotFound(service_id='cinder-backup')
# do quota reserver before setting volume status and backup status
# Reserve a quota before setting volume status and backup status
try:
reserve_opts = {'backups': 1,
'backup_gigabytes': volume['size']}

View File

@ -263,7 +263,7 @@ class BarbicanKeyManagerTestCase(test_key_mgr.KeyManagerTestCase):
self.key_mgr.create_key(self.ctxt)
# assert proper calls occured, including with project_id
# assert proper calls occurred, including with project_id
mock_token.assert_called_once_with(
auth_url=CONF.keymgr.encryption_auth_url,
token=self.ctxt.auth_token,

View File

@ -462,7 +462,7 @@ class FeatureState(object):
:param supported: True if supported, false otherwise
:param minimum_version: The minimum version that this feature is
suported at
supported at
"""
self.supported = supported
self.minimum_version = minimum_version