From 0d4219f2655e78406cee4be298cec584626a9aba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ne=C4=8Das?= Date: Mon, 28 Feb 2022 19:52:19 +0100 Subject: [PATCH] Fix IPs for ipaddr filter in user_guide (#77151) * Fix IPs for ipaddr filter in user_guide * Apply suggestions from code review Co-authored-by: Sandra McCann --- docs/docsite/rst/user_guide/playbooks_filters.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docsite/rst/user_guide/playbooks_filters.rst b/docs/docsite/rst/user_guide/playbooks_filters.rst index f16b2359026..fb83a48bbac 100644 --- a/docs/docsite/rst/user_guide/playbooks_filters.rst +++ b/docs/docsite/rst/user_guide/playbooks_filters.rst @@ -1266,7 +1266,7 @@ address. For example, to get the IP address itself from a CIDR, you can use: .. code-block:: yaml+jinja {{ '192.0.2.1/24' | ansible.netcommon.ipaddr('address') }} - # => 192.168.0.1 + # => 192.0.2.1 More information about ``ipaddr`` filter and complete usage guide can be found in :ref:`playbooks_filters_ipaddr`.