summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Putnam <mike.putnam@smartsocialmedia.com>2014-12-10 12:13:31 -0600
committerMike Putnam <mike.putnam@smartsocialmedia.com>2014-12-10 12:13:31 -0600
commit09ef8f5722c300088e78512ca403f3d99b08d74d (patch)
tree443b59c445905efe711763ccaddaf6bffff04b95
parente507a79b9685b1558981f54ad3c52c0b92f92b9b (diff)
downloadansible-09ef8f5722c300088e78512ca403f3d99b08d74d.tar.gz
Typo fix in playbook delegation docs.
-rw-r--r--docsite/rst/playbooks_delegation.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docsite/rst/playbooks_delegation.rst b/docsite/rst/playbooks_delegation.rst
index e4640afbfa..483a24edbc 100644
--- a/docsite/rst/playbooks_delegation.rst
+++ b/docsite/rst/playbooks_delegation.rst
@@ -161,7 +161,7 @@ This can be optionally paired with "delegate_to" to specify an individual host t
When "run_once" is not used with "delegate_to" it will execute on the first host, as defined by inventory,
in the group(s) of hosts targeted by the play. e.g. webservers[0] if the play targeted "hosts: webservers".
-This aproach is similar, although more concise and cleaner than applying a conditional to a task such as::
+This approach is similar, although more concise and cleaner than applying a conditional to a task such as::
- command: /opt/application/upgrade_db.py
when: inventory_hostname == webservers[0]