summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Coca <bcoca@ansible.com>2014-11-20 16:35:26 -0500
committerBrian Coca <bcoca@ansible.com>2014-11-20 16:35:26 -0500
commitb07ffbdb5b215caae53f0616386087df198cb5a0 (patch)
tree7b2e429013d3d5526a9af353437840c3f0cc92db
parent5e33db3b7e11134c63f8a61951151106880c7767 (diff)
parent02f6ca034edbee20fb9c60eb20b9df8da9a43a74 (diff)
downloadansible-b07ffbdb5b215caae53f0616386087df198cb5a0.tar.gz
Merge pull request #9587 from bcoca/spelling_fix
zpelling fix
-rw-r--r--docsite/rst/playbooks_variables.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docsite/rst/playbooks_variables.rst b/docsite/rst/playbooks_variables.rst
index 08b8ce60eb..253cee2ba4 100644
--- a/docsite/rst/playbooks_variables.rst
+++ b/docsite/rst/playbooks_variables.rst
@@ -302,7 +302,7 @@ Shuffle Filter
.. versionadded:: 1.8
-This filter will randomize an existing list, giving a differnt order every invocation.
+This filter will randomize an existing list, giving a different order every invocation.
To get a random list from an existing list::
@@ -317,12 +317,12 @@ Other Useful Filters
--------------------
To concatenate a list into a string::
-
+
{{ list | join(" ") }}
To get the last name of a file path, like 'foo.txt' out of '/etc/asdf/foo.txt'::
- {{ path | basename }}
+ {{ path | basename }}
To get the directory from a path::
@@ -331,7 +331,7 @@ To get the directory from a path::
To expand a path containing a tilde (`~`) character (new in version 1.5)::
{{ path | expanduser }}
-
+
To get the real path of a link (new in version 1.8)::
{{ path | readlink }}