summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorShota <shotat@users.noreply.github.com>2016-06-30 03:31:25 +0900
committerBrian Coca <bcoca@users.noreply.github.com>2016-06-29 14:31:25 -0400
commit47f715fb37885a3763c225b15d81e646ec6d18e4 (patch)
tree468cd93a82370ed368c3828ab2cdf2f6f582438d /examples
parent4f76222f5b23671c8848df63d57a4a1adc419bf3 (diff)
downloadansible-47f715fb37885a3763c225b15d81e646ec6d18e4.tar.gz
Fix some typos (#16498)
Diffstat (limited to 'examples')
-rw-r--r--examples/DOCUMENTATION.yml2
-rw-r--r--examples/hosts.yaml2
-rwxr-xr-xexamples/scripts/uptime.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/DOCUMENTATION.yml b/examples/DOCUMENTATION.yml
index 7b572e6989..9ff8198151 100644
--- a/examples/DOCUMENTATION.yml
+++ b/examples/DOCUMENTATION.yml
@@ -14,7 +14,7 @@ notes:
requirements:
- list of required things
- like the factor package
- - or a specic platform
+ - or a specific platform
options:
# One or more of the following
option_name:
diff --git a/examples/hosts.yaml b/examples/hosts.yaml
index 8a2f6b2567..0cb42f5bb0 100644
--- a/examples/hosts.yaml
+++ b/examples/hosts.yaml
@@ -30,7 +30,7 @@
## 192.168.1.110:
# Ex 3: You can create hosts using ranges and add children groups and vars to a group
-# The child group can define anything you would normall add to a group
+# The child group can define anything you would normally add to a group
##testing:
## hosts:
diff --git a/examples/scripts/uptime.py b/examples/scripts/uptime.py
index cf3c604f81..cad16d8df4 100755
--- a/examples/scripts/uptime.py
+++ b/examples/scripts/uptime.py
@@ -7,7 +7,7 @@ from ansible.playbook.play import Play
from ansible.executor.task_queue_manager import TaskQueueManager
from ansible.plugins.callback import CallbackBase
-# Creat a callback object so we can capture the output
+# Create a callback object so we can capture the output
class ResultsCollector(CallbackBase):
def __init__(self, *args, **kwargs):