From f9963c4e7aebd37b1b46ea0a19bc63eac3ca92c2 Mon Sep 17 00:00:00 2001 From: aj2s <72272843+aj2s@users.noreply.github.com> Date: Wed, 17 Sep 2025 15:32:41 -0700 Subject: [PATCH] docs: Small typo + hyperlink on advanced.rst --- docs/getting_started/how-to-use/advanced.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/getting_started/how-to-use/advanced.rst b/docs/getting_started/how-to-use/advanced.rst index d1129fc37..0679fa4ed 100644 --- a/docs/getting_started/how-to-use/advanced.rst +++ b/docs/getting_started/how-to-use/advanced.rst @@ -224,7 +224,7 @@ To make this possible, every module accepts the ``query_params`` argument. This you want to use to search for the object. Let's start with another example. We will continue to use :ref:`netbox.netbox.netbox_ip_address`. We created **192.168.100.1/24** as a duplicate IP address within -the global IP address space within NetBox. This task should fail saying there was more than result returned. +the global IP address space within NetBox. This task should fail saying there was more than one result returned. .. code-block:: yaml @@ -304,7 +304,9 @@ Hopefully this shines some light on this useful feature to allow you, as the use Using Module defaults groups -------------------------------------------- -Ansible-core >= 2.12 provide a useful feature called [Module defaults groups](https://docs.ansible.com/ansible/latest/user_guide/playbooks_module_defaults.html#module-defaults-groups) that lets us specify default parameters for a group of modules in a single place. We can use the action_group ``netbox`` that contains all modules from this collection to avoid setting e.g. ``token`` and ``url`` on each task and thus reduce boilerplate code. +Ansible-core >= 2.12 provide a useful feature called `Module defaults groups`_ that lets us specify default parameters for a group of modules in a single place. We can use the action_group ``netbox`` that contains all modules from this collection to avoid setting e.g. ``token`` and ``url`` on each task and thus reduce boilerplate code. + +.. _Module defaults groups: https://docs.ansible.com/ansible/latest/user_guide/playbooks_module_defaults.html#module-defaults-groups .. code-block:: yaml