Fix some word spellings

Change-Id: Id6369862fc0e0562cb1eff712f54d7ea8a6a70c6
This commit is contained in:
venkatamahesh 2016-02-03 13:18:17 +05:30
parent 8b83e14d84
commit 01ba9c837a
3 changed files with 3 additions and 3 deletions

View File

@ -99,7 +99,7 @@ Note: The list operation will show no running stack.::
$ heat stack-delete teststack
$ heat stack-list
You can explore other heat commands by refering to the
You can explore other heat commands by referring to the
`Heat chapter
<http://docs.openstack.org/cli-reference/heat.html>`_
of the `OpenStack Command-Line Interface Reference

View File

@ -1650,7 +1650,7 @@ class EngineService(service.Service):
self.resource_enforcer.enforce_stack(stack)
snapshot = snapshot_object.Snapshot.get_snapshot_by_stack(
cnxt, snapshot_id, s)
# FIXME(pas-ha) has to be ammended to deny restoring stacks
# FIXME(pas-ha) has to be amended to deny restoring stacks
# that have disallowed for current user
self.thread_group_mgr.start_with_lock(cnxt, stack, self.engine_id,

View File

@ -39,7 +39,7 @@ class AutoscalingLoadBalancerTest(scenario_base.ScenarioTestsBase):
for count in range(retries):
time.sleep(1)
r = requests.get(url)
# skip unsuccessfull requests
# skip unsuccessful requests
if r.status_code == 200:
resp.add(r.text)
self.assertEqual(expected_num, len(resp))