minor spelling changes

This commit is contained in:
Carlos E. Garcia 2016-12-10 21:50:09 -05:00 committed by Brian Coca
commit 0b8011436d
114 changed files with 152 additions and 152 deletions

View file

@ -557,7 +557,7 @@ class PlayContext(Base):
if self.become_user:
flags += ' -u %s ' % self.become_user
#FIXME: make shell independant
#FIXME: make shell independent
becomecmd = '%s %s echo %s && %s %s env ANSIBLE=true %s' % (exe, flags, success_key, exe, flags, cmd)
elif self.become_method == 'dzdo':

View file

@ -427,7 +427,7 @@ class Task(Base, Conditional, Taggable, Become):
path_stack = []
dep_chain = self.get_dep_chain()
# inside role: add the dependency chain from current to dependant
# inside role: add the dependency chain from current to dependent
if dep_chain:
path_stack.extend(reversed([x._role_path for x in dep_chain]))