summaryrefslogtreecommitdiffstats
path: root/docs/docsite
diff options
context:
space:
mode:
authorPierre Templier <pierre.templier@gmail.com>2018-04-09 12:49:10 +0200
committerMartin Krizek <martin.krizek@gmail.com>2018-04-09 12:49:10 +0200
commit1e0df01980388af49ec72c308caf37a67ff38a30 (patch)
tree54efad297122228d2f64ae9d8dc59a55dc8ac9e3 /docs/docsite
parentapt: properly set changed for autoremove/autoclean (#38329) (diff)
downloadansible-1e0df01980388af49ec72c308caf37a67ff38a30.tar.xz
ansible-1e0df01980388af49ec72c308caf37a67ff38a30.zip
Small typos in docs (#38371)
* Small typos in docs * Use same wording as in porting_guide_2.5.rst
Diffstat (limited to 'docs/docsite')
-rw-r--r--docs/docsite/rst/dev_guide/testing/sanity/no-tests-as-filters.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/docsite/rst/dev_guide/testing/sanity/no-tests-as-filters.rst b/docs/docsite/rst/dev_guide/testing/sanity/no-tests-as-filters.rst
index a61c0fac02..a20c6c5fc7 100644
--- a/docs/docsite/rst/dev_guide/testing/sanity/no-tests-as-filters.rst
+++ b/docs/docsite/rst/dev_guide/testing/sanity/no-tests-as-filters.rst
@@ -3,7 +3,7 @@ Sanity Tests ยป no-tests-as-filters
Using Ansible provided Jinja2 tests as filters will be removed in Ansible 2.9.
-Prior to Ansible 2.5, Jinja2 tests included within Ansible were most often used as filters. The large difference in use is that filters are referenced as ``variable | filter_name`` where as Jinja2 tests are refereced as ``variable is test_name``.
+Prior to Ansible 2.5, Jinja2 tests included within Ansible were most often used as filters. The large difference in use is that filters are referenced as ``variable | filter_name`` while Jinja2 tests are referenced as ``variable is test_name``.
Jinja2 tests are used for comparisons, whereas filters are used for data manipulation, and have different applications in Jinja2. This change is to help differentiate the concepts for a better understanding of Jinja2, and where each can be appropriately used.