summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorb-abadie <1434660+b-abadie@users.noreply.github.com>2019-03-27 20:18:01 +0100
committerAlicia Cozine <879121+acozine@users.noreply.github.com>2019-03-27 20:18:01 +0100
commit9e6b6385e88552cd0bf91f13f1c3f90b0e9e917c (patch)
tree63f1f47a339cf5b64c3aedfff06aa34dd162e718 /docs
parentFix service integration test python selection. (#54449) (diff)
downloadansible-9e6b6385e88552cd0bf91f13f1c3f90b0e9e917c.tar.xz
ansible-9e6b6385e88552cd0bf91f13f1c3f90b0e9e917c.zip
Fix example on address | ipsubnet(20) usage (#54388)
<!--- Your description here --> `192.168.128.0/20` does not contain `192.168.144.5`, the correct subnet is `192.168.144.0/20` (which is what is rendered on my test template). +label: docsite_pr
Diffstat (limited to 'docs')
-rw-r--r--docs/docsite/rst/user_guide/playbooks_filters_ipaddr.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/docsite/rst/user_guide/playbooks_filters_ipaddr.rst b/docs/docsite/rst/user_guide/playbooks_filters_ipaddr.rst
index e24a6a8d00..1560fcc556 100644
--- a/docs/docsite/rst/user_guide/playbooks_filters_ipaddr.rst
+++ b/docs/docsite/rst/user_guide/playbooks_filters_ipaddr.rst
@@ -479,7 +479,7 @@ the first argument, the ``ipsubnet()`` filter will instead return the biggest su
contains that given IP address::
# {{ address | ipsubnet(20) }}
- 192.168.128.0/20
+ 192.168.144.0/20
By specifying an index number as a second argument, you can select smaller and
smaller subnets::