Merge "Fix typos in comments and docstrings"

This commit is contained in:
Jenkins 2016-03-28 19:25:38 +00:00 committed by Gerrit Code Review
commit 46b073173c
3 changed files with 3 additions and 4 deletions

View File

@ -189,8 +189,8 @@ class EC2Server(EC2Mixin, base.ResourceManager):
# NOTE(wtakase): After instance deletion, instance can be 'terminated' # NOTE(wtakase): After instance deletion, instance can be 'terminated'
# state. If all instance states are 'terminated', this # state. If all instance states are 'terminated', this
# returns True. And if get_only_instaces() returns empty # returns True. And if get_only_instances() returns an
# list, this also returns True because we consider # empty list, this also returns True because we consider
# instance has already been deleted. # instance has already been deleted.
return all(map(lambda i: i.state == "terminated", instances)) return all(map(lambda i: i.state == "terminated", instances))

View File

@ -32,7 +32,6 @@ class Stack(common_utils.RandomNameGeneratorMixin):
:param Scenario scenario: scenario instance :param Scenario scenario: scenario instance
:param Task task: task instance :param Task task: task instance
:param str name: stack name
:param str template: template file path :param str template: template file path
:param dict files: dict with file name and path :param dict files: dict with file name and path
:param dict parameters: parameters for template :param dict parameters: parameters for template