Fix several misspells

Change-Id: I5bdac6ace595eb1ad67e8c3ab8ee34cd986ff167
This commit is contained in:
jun xie
2014-07-10 16:30:57 +08:00
parent a7dd2bb0e4
commit fd08a7caf2
2 changed files with 2 additions and 2 deletions

View File

@@ -516,7 +516,7 @@ class Stack(collections.Mapping):
def stack_task(self, action, reverse=False, post_func=None):
'''
A task to perform an action on the stack and all of the resources
in forward or reverse dependency order as specfifed by reverse
in forward or reverse dependency order as specified by reverse
'''
self.state_set(action, self.IN_PROGRESS,
'Stack %s started' % action)

View File

@@ -114,7 +114,7 @@ class Resource(object):
# of the same type. Instead get the next match which will get
# us closer to a concrete class.
def get_ancestor_template_resources():
"""Return an ancestory list (TemplateResources only)."""
"""Return an ancestry list (TemplateResources only)."""
parent = stack.parent_resource
while parent is not None:
if isinstance(parent, template_resource.TemplateResource):