From 1db106c40b0501ba03f4205113be9ada8921caef Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Tue, 15 Jul 2025 17:03:58 +0200 Subject: [PATCH 1/4] Order according to precedence (further down wins over further up). --- .../ansible-docsite/macros/parameters.rst.j2 | 40 +++++++++---------- .../simplified-rst/macros/parameters.rst.j2 | 20 +++++----- .../collections/ns2/col/foo_become.rst | 12 +++--- .../collections/ns2/col/foo_become.rst | 12 +++--- .../collections/ns2/col/foo_become.rst | 12 +++--- .../foo_become.rst | 16 ++++---- .../collections/ns2/col/foo_become.rst | 16 ++++---- .../baseline-squash-hierarchy/foo_become.rst | 12 +++--- .../collections/ns2/col/foo_become.rst | 16 ++++---- 9 files changed, 78 insertions(+), 78 deletions(-) diff --git a/src/antsibull_docs/data/docsite/ansible-docsite/macros/parameters.rst.j2 b/src/antsibull_docs/data/docsite/ansible-docsite/macros/parameters.rst.j2 index cd43de15..6f33d409 100644 --- a/src/antsibull_docs/data/docsite/ansible-docsite/macros/parameters.rst.j2 +++ b/src/antsibull_docs/data/docsite/ansible-docsite/macros/parameters.rst.j2 @@ -143,13 +143,13 @@ {% endif %} @{ deprecates_rst(env['deprecated'], collection, 8, role_entrypoint=role_entrypoint) }@ {% endfor %} -{% for myvar in value['vars'] %} - - Variable: @{ myvar['name'] | rst_escape }@ -{% if myvar['version_added'] is still_relevant(collection=myvar['version_added_collection'] or collection) %} +{% for mycli in value['cli'] %} + - CLI argument: @{ mycli['option'] | rst_escape }@ +{% if mycli['version_added'] is still_relevant(collection=mycli['version_added_collection'] or collection) %} - :ansible-option-versionadded:`added in @{ version_added_rst(myvar['version_added'], myvar['version_added_collection'] or collection) }@` + :ansible-option-versionadded:`added in @{ version_added_rst(mycli['version_added'], mycli['version_added_collection'] or collection) }@` {% endif %} -@{ deprecates_rst(myvar['deprecated'], collection, 8, role_entrypoint=role_entrypoint) }@ +@{ deprecates_rst(mycli['deprecated'], collection, 8, role_entrypoint=role_entrypoint) }@ {% endfor %} {% for kw in value['keyword'] %} - Keyword: @{ kw['name'] | rst_escape }@ @@ -159,13 +159,13 @@ {% endif %} @{ deprecates_rst(kw['deprecated'], collection, 8, role_entrypoint=role_entrypoint) }@ {% endfor %} -{% for mycli in value['cli'] %} - - CLI argument: @{ mycli['option'] | rst_escape }@ -{% if mycli['version_added'] is still_relevant(collection=mycli['version_added_collection'] or collection) %} +{% for myvar in value['vars'] %} + - Variable: @{ myvar['name'] | rst_escape }@ +{% if myvar['version_added'] is still_relevant(collection=myvar['version_added_collection'] or collection) %} - :ansible-option-versionadded:`added in @{ version_added_rst(mycli['version_added'], mycli['version_added_collection'] or collection) }@` + :ansible-option-versionadded:`added in @{ version_added_rst(myvar['version_added'], myvar['version_added_collection'] or collection) }@` {% endif %} -@{ deprecates_rst(mycli['deprecated'], collection, 8, role_entrypoint=role_entrypoint) }@ +@{ deprecates_rst(myvar['deprecated'], collection, 8, role_entrypoint=role_entrypoint) }@ {% endfor %} {% endif %} @@ -268,13 +268,13 @@ @{ deprecates_html(env['deprecated'], collection, role_entrypoint=role_entrypoint) }@ {% endfor %} -{% for myvar in value['vars'] %} +{% for mycli in value['cli'] %}
  • -

    Variable: @{ myvar['name'] | escape }@

    -{% if myvar['version_added'] is still_relevant(collection=myvar['version_added_collection'] or collection) %} -

    added in @{ version_added_html(myvar['version_added'], myvar['version_added_collection'] or collection) }@

    +

    CLI argument: @{ mycli['option'] | escape }@

    +{% if mycli['version_added'] is still_relevant(collection=mycli['version_added_collection'] or collection) %} +

    added in @{ version_added_html(mycli['version_added'], mycli['version_added_collection'] or collection) }@

    {% endif %} -@{ deprecates_html(myvar['deprecated'], collection, role_entrypoint=role_entrypoint) }@ +@{ deprecates_html(mycli['deprecated'], collection, role_entrypoint=role_entrypoint) }@
  • {% endfor %} {% for kw in value['keyword'] %} @@ -286,13 +286,13 @@ @{ deprecates_html(kw['deprecated'], collection, role_entrypoint=role_entrypoint) }@ {% endfor %} -{% for mycli in value['cli'] %} +{% for myvar in value['vars'] %}
  • -

    CLI argument: @{ mycli['option'] | escape }@

    -{% if mycli['version_added'] is still_relevant(collection=mycli['version_added_collection'] or collection) %} -

    added in @{ version_added_html(mycli['version_added'], mycli['version_added_collection'] or collection) }@

    +

    Variable: @{ myvar['name'] | escape }@

    +{% if myvar['version_added'] is still_relevant(collection=myvar['version_added_collection'] or collection) %} +

    added in @{ version_added_html(myvar['version_added'], myvar['version_added_collection'] or collection) }@

    {% endif %} -@{ deprecates_html(mycli['deprecated'], collection, role_entrypoint=role_entrypoint) }@ +@{ deprecates_html(myvar['deprecated'], collection, role_entrypoint=role_entrypoint) }@
  • {% endfor %} diff --git a/src/antsibull_docs/data/docsite/simplified-rst/macros/parameters.rst.j2 b/src/antsibull_docs/data/docsite/simplified-rst/macros/parameters.rst.j2 index f62e271b..094e3f35 100644 --- a/src/antsibull_docs/data/docsite/simplified-rst/macros/parameters.rst.j2 +++ b/src/antsibull_docs/data/docsite/simplified-rst/macros/parameters.rst.j2 @@ -100,13 +100,13 @@ @{ deprecates_html(env['deprecated'], collection, role_entrypoint=role_entrypoint) }@ {% endfor %} -{% for myvar in value['vars'] %} +{% for mycli in value['cli'] %}
  • -

    Variable: @{ myvar['name'] | escape }@

    -{% if myvar['version_added'] is still_relevant(collection=myvar['version_added_collection'] or collection) %} -

    added in @{ version_added_html(myvar['version_added'], myvar['version_added_collection'] or collection) }@

    +

    CLI argument: @{ mycli['option'] | escape }@

    +{% if mycli['version_added'] is still_relevant(collection=mycli['version_added_collection'] or collection) %} +

    added in @{ version_added_html(mycli['version_added'], mycli['version_added_collection'] or collection) }@

    {% endif %} -@{ deprecates_html(myvar['deprecated'], collection, role_entrypoint=role_entrypoint) }@ +@{ deprecates_html(mycli['deprecated'], collection, role_entrypoint=role_entrypoint) }@
  • {% endfor %} {% for kw in value['keyword'] %} @@ -118,13 +118,13 @@ @{ deprecates_html(kw['deprecated'], collection, role_entrypoint=role_entrypoint) }@ {% endfor %} -{% for mycli in value['cli'] %} +{% for myvar in value['vars'] %}
  • -

    CLI argument: @{ mycli['option'] | escape }@

    -{% if mycli['version_added'] is still_relevant(collection=mycli['version_added_collection'] or collection) %} -

    added in @{ version_added_html(mycli['version_added'], mycli['version_added_collection'] or collection) }@

    +

    Variable: @{ myvar['name'] | escape }@

    +{% if myvar['version_added'] is still_relevant(collection=myvar['version_added_collection'] or collection) %} +

    added in @{ version_added_html(myvar['version_added'], myvar['version_added_collection'] or collection) }@

    {% endif %} -@{ deprecates_html(mycli['deprecated'], collection, role_entrypoint=role_entrypoint) }@ +@{ deprecates_html(myvar['deprecated'], collection, role_entrypoint=role_entrypoint) }@
  • {% endfor %} diff --git a/tests/functional/baseline-default/collections/ns2/col/foo_become.rst b/tests/functional/baseline-default/collections/ns2/col/foo_become.rst index 7fcdadc2..a53419ea 100644 --- a/tests/functional/baseline-default/collections/ns2/col/foo_become.rst +++ b/tests/functional/baseline-default/collections/ns2/col/foo_become.rst @@ -218,6 +218,8 @@ Parameters Alternative: nothing + - Keyword: become\_exe + - Variable: ansible\_become\_exe - Variable: ansible\_foo\_exe @@ -229,8 +231,6 @@ Parameters Alternative: nothing - - Keyword: become\_exe - .. raw:: html @@ -299,13 +299,13 @@ Parameters - Environment variable: :envvar:`ANSIBLE\_FOO\_USER` - - Variable: ansible\_become\_user - - - Variable: ansible\_foo\_user + - Keyword: become\_user :ansible-option-versionadded:`added in ns2.col 0.1.0` - - Keyword: become\_user + - Variable: ansible\_become\_user + + - Variable: ansible\_foo\_user :ansible-option-versionadded:`added in ns2.col 0.1.0` diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_become.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_become.rst index 7fcdadc2..a53419ea 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_become.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_become.rst @@ -218,6 +218,8 @@ Parameters Alternative: nothing + - Keyword: become\_exe + - Variable: ansible\_become\_exe - Variable: ansible\_foo\_exe @@ -229,8 +231,6 @@ Parameters Alternative: nothing - - Keyword: become\_exe - .. raw:: html @@ -299,13 +299,13 @@ Parameters - Environment variable: :envvar:`ANSIBLE\_FOO\_USER` - - Variable: ansible\_become\_user - - - Variable: ansible\_foo\_user + - Keyword: become\_user :ansible-option-versionadded:`added in ns2.col 0.1.0` - - Keyword: become\_user + - Variable: ansible\_become\_user + + - Variable: ansible\_foo\_user :ansible-option-versionadded:`added in ns2.col 0.1.0` diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_become.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_become.rst index 01b3ed7a..d4544370 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_become.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_become.rst @@ -215,6 +215,8 @@ Parameters Alternative: nothing + - Keyword: become\_exe + - Variable: ansible\_become\_exe - Variable: ansible\_foo\_exe @@ -226,8 +228,6 @@ Parameters Alternative: nothing - - Keyword: become\_exe - .. raw:: html @@ -296,13 +296,13 @@ Parameters - Environment variable: :envvar:`ANSIBLE\_FOO\_USER` - - Variable: ansible\_become\_user - - - Variable: ansible\_foo\_user + - Keyword: become\_user :ansible-option-versionadded:`added in ns2.col 0.1.0` - - Keyword: become\_user + - Variable: ansible\_become\_user + + - Variable: ansible\_foo\_user :ansible-option-versionadded:`added in ns2.col 0.1.0` diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_become.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_become.rst index 0fffe5e6..9e3401d4 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_become.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_become.rst @@ -115,6 +115,10 @@ Parameters

    Why: Just some text.

    Alternative: nothing

    + +
  • +

    Keyword: become_exe

    +
  • Variable: ansible_become_exe

    @@ -126,10 +130,6 @@ Parameters

    Why: Just some text.

    Alternative: nothing

    -
  • -
  • -

    Keyword: become_exe

    -
  • @@ -169,16 +169,16 @@ Parameters
  • -

    Variable: ansible_become_user

    +

    Keyword: become_user

    +

    added in ns2.col 0.1.0

  • -

    Variable: ansible_foo_user

    -

    added in ns2.col 0.1.0

    +

    Variable: ansible_become_user

  • -

    Keyword: become_user

    +

    Variable: ansible_foo_user

    added in ns2.col 0.1.0

  • diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_become.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_become.rst index 7160fa15..42207e45 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_become.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_become.rst @@ -115,6 +115,10 @@ Parameters

    Why: Just some text.

    Alternative: nothing

    + +
  • +

    Keyword: become_exe

    +
  • Variable: ansible_become_exe

    @@ -126,10 +130,6 @@ Parameters

    Why: Just some text.

    Alternative: nothing

    -
  • -
  • -

    Keyword: become_exe

    -
  • @@ -169,16 +169,16 @@ Parameters
  • -

    Variable: ansible_become_user

    +

    Keyword: become_user

    +

    added in ns2.col 0.1.0

  • -

    Variable: ansible_foo_user

    -

    added in ns2.col 0.1.0

    +

    Variable: ansible_become_user

  • -

    Keyword: become_user

    +

    Variable: ansible_foo_user

    added in ns2.col 0.1.0

  • diff --git a/tests/functional/baseline-squash-hierarchy/foo_become.rst b/tests/functional/baseline-squash-hierarchy/foo_become.rst index 7fcdadc2..a53419ea 100644 --- a/tests/functional/baseline-squash-hierarchy/foo_become.rst +++ b/tests/functional/baseline-squash-hierarchy/foo_become.rst @@ -218,6 +218,8 @@ Parameters Alternative: nothing + - Keyword: become\_exe + - Variable: ansible\_become\_exe - Variable: ansible\_foo\_exe @@ -229,8 +231,6 @@ Parameters Alternative: nothing - - Keyword: become\_exe - .. raw:: html @@ -299,13 +299,13 @@ Parameters - Environment variable: :envvar:`ANSIBLE\_FOO\_USER` - - Variable: ansible\_become\_user - - - Variable: ansible\_foo\_user + - Keyword: become\_user :ansible-option-versionadded:`added in ns2.col 0.1.0` - - Keyword: become\_user + - Variable: ansible\_become\_user + + - Variable: ansible\_foo\_user :ansible-option-versionadded:`added in ns2.col 0.1.0` diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_become.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_become.rst index eecbfe1f..1bcdf59f 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_become.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_become.rst @@ -147,6 +147,10 @@ Parameters

    Why: Just some text.

    Alternative: nothing

    + +
  • +

    Keyword: become_exe

    +
  • Variable: ansible_become_exe

    @@ -158,10 +162,6 @@ Parameters

    Why: Just some text.

    Alternative: nothing

    -
  • -
  • -

    Keyword: become_exe

    -
  • @@ -201,16 +201,16 @@ Parameters
  • -

    Variable: ansible_become_user

    +

    Keyword: become_user

    +

    added in ns2.col 0.1.0

  • -

    Variable: ansible_foo_user

    -

    added in ns2.col 0.1.0

    +

    Variable: ansible_become_user

  • -

    Keyword: become_user

    +

    Variable: ansible_foo_user

    added in ns2.col 0.1.0

  • From 963d7fe918077186d6b5d9ff040740fff04e2ed6 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Tue, 15 Jul 2025 17:29:50 +0200 Subject: [PATCH 2/4] Add note on precedence. --- .../data/docsite/ansible-docsite/plugin.rst.j2 | 9 +++++++++ .../data/docsite/simplified-rst/plugin.rst.j2 | 9 +++++++++ .../baseline-default/collections/ns2/col/bar_filter.rst | 7 +++++++ .../baseline-default/collections/ns2/col/bar_test.rst | 7 +++++++ .../baseline-default/collections/ns2/col/foo_become.rst | 7 +++++++ .../baseline-default/collections/ns2/col/foo_cache.rst | 7 +++++++ .../collections/ns2/col/foo_callback.rst | 7 +++++++ .../baseline-default/collections/ns2/col/foo_cliconf.rst | 7 +++++++ .../collections/ns2/col/foo_connection.rst | 7 +++++++ .../baseline-default/collections/ns2/col/foo_filter.rst | 7 +++++++ .../collections/ns2/col/foo_inventory.rst | 7 +++++++ .../baseline-default/collections/ns2/col/foo_lookup.rst | 7 +++++++ .../baseline-default/collections/ns2/col/foo_shell.rst | 7 +++++++ .../collections/ns2/col/foo_strategy.rst | 7 +++++++ .../baseline-default/collections/ns2/col/foo_test.rst | 7 +++++++ .../baseline-default/collections/ns2/col/foo_vars.rst | 7 +++++++ .../collections/ns2/col/bar_filter.rst | 7 +++++++ .../collections/ns2/col/bar_test.rst | 7 +++++++ .../collections/ns2/col/foo_become.rst | 7 +++++++ .../collections/ns2/col/foo_cache.rst | 7 +++++++ .../collections/ns2/col/foo_callback.rst | 7 +++++++ .../collections/ns2/col/foo_cliconf.rst | 7 +++++++ .../collections/ns2/col/foo_connection.rst | 7 +++++++ .../collections/ns2/col/foo_filter.rst | 7 +++++++ .../collections/ns2/col/foo_inventory.rst | 7 +++++++ .../collections/ns2/col/foo_lookup.rst | 7 +++++++ .../collections/ns2/col/foo_shell.rst | 7 +++++++ .../collections/ns2/col/foo_strategy.rst | 7 +++++++ .../collections/ns2/col/foo_test.rst | 7 +++++++ .../collections/ns2/col/foo_vars.rst | 7 +++++++ .../collections/ns2/col/bar_filter.rst | 7 +++++++ .../baseline-no-indexes/collections/ns2/col/bar_test.rst | 7 +++++++ .../collections/ns2/col/foo_become.rst | 7 +++++++ .../collections/ns2/col/foo_cache.rst | 7 +++++++ .../collections/ns2/col/foo_callback.rst | 7 +++++++ .../collections/ns2/col/foo_cliconf.rst | 7 +++++++ .../collections/ns2/col/foo_connection.rst | 7 +++++++ .../collections/ns2/col/foo_filter.rst | 7 +++++++ .../collections/ns2/col/foo_inventory.rst | 7 +++++++ .../collections/ns2/col/foo_lookup.rst | 7 +++++++ .../collections/ns2/col/foo_shell.rst | 7 +++++++ .../collections/ns2/col/foo_strategy.rst | 7 +++++++ .../baseline-no-indexes/collections/ns2/col/foo_test.rst | 7 +++++++ .../baseline-no-indexes/collections/ns2/col/foo_vars.rst | 7 +++++++ tests/functional/baseline-plugin/ns2.col.foo_lookup.rst | 7 +++++++ .../bar_filter.rst | 7 +++++++ .../bar_test.rst | 7 +++++++ .../foo_become.rst | 7 +++++++ .../foo_cache.rst | 7 +++++++ .../foo_callback.rst | 7 +++++++ .../foo_cliconf.rst | 7 +++++++ .../foo_connection.rst | 7 +++++++ .../foo_filter.rst | 7 +++++++ .../foo_inventory.rst | 7 +++++++ .../foo_lookup.rst | 7 +++++++ .../foo_shell.rst | 7 +++++++ .../foo_strategy.rst | 7 +++++++ .../foo_test.rst | 7 +++++++ .../foo_vars.rst | 7 +++++++ .../collections/ns2/col/bar_filter.rst | 7 +++++++ .../collections/ns2/col/bar_test.rst | 7 +++++++ .../collections/ns2/col/foo_become.rst | 7 +++++++ .../collections/ns2/col/foo_cache.rst | 7 +++++++ .../collections/ns2/col/foo_callback.rst | 7 +++++++ .../collections/ns2/col/foo_cliconf.rst | 7 +++++++ .../collections/ns2/col/foo_connection.rst | 7 +++++++ .../collections/ns2/col/foo_filter.rst | 7 +++++++ .../collections/ns2/col/foo_inventory.rst | 7 +++++++ .../collections/ns2/col/foo_lookup.rst | 7 +++++++ .../collections/ns2/col/foo_shell.rst | 7 +++++++ .../collections/ns2/col/foo_strategy.rst | 7 +++++++ .../collections/ns2/col/foo_test.rst | 7 +++++++ .../collections/ns2/col/foo_vars.rst | 7 +++++++ .../functional/baseline-squash-hierarchy/bar_filter.rst | 7 +++++++ tests/functional/baseline-squash-hierarchy/bar_test.rst | 7 +++++++ .../functional/baseline-squash-hierarchy/foo_become.rst | 7 +++++++ tests/functional/baseline-squash-hierarchy/foo_cache.rst | 7 +++++++ .../baseline-squash-hierarchy/foo_callback.rst | 7 +++++++ .../functional/baseline-squash-hierarchy/foo_cliconf.rst | 7 +++++++ .../baseline-squash-hierarchy/foo_connection.rst | 7 +++++++ .../functional/baseline-squash-hierarchy/foo_filter.rst | 7 +++++++ .../baseline-squash-hierarchy/foo_inventory.rst | 7 +++++++ .../functional/baseline-squash-hierarchy/foo_lookup.rst | 7 +++++++ tests/functional/baseline-squash-hierarchy/foo_shell.rst | 7 +++++++ .../baseline-squash-hierarchy/foo_strategy.rst | 7 +++++++ tests/functional/baseline-squash-hierarchy/foo_test.rst | 7 +++++++ tests/functional/baseline-squash-hierarchy/foo_vars.rst | 7 +++++++ .../collections/ns2/col/bar_filter.rst | 7 +++++++ .../collections/ns2/col/bar_test.rst | 7 +++++++ .../collections/ns2/col/foo_become.rst | 7 +++++++ .../collections/ns2/col/foo_cache.rst | 7 +++++++ .../collections/ns2/col/foo_callback.rst | 7 +++++++ .../collections/ns2/col/foo_cliconf.rst | 7 +++++++ .../collections/ns2/col/foo_connection.rst | 7 +++++++ .../collections/ns2/col/foo_filter.rst | 7 +++++++ .../collections/ns2/col/foo_inventory.rst | 7 +++++++ .../collections/ns2/col/foo_lookup.rst | 7 +++++++ .../collections/ns2/col/foo_shell.rst | 7 +++++++ .../collections/ns2/col/foo_strategy.rst | 7 +++++++ .../collections/ns2/col/foo_test.rst | 7 +++++++ .../collections/ns2/col/foo_vars.rst | 7 +++++++ 101 files changed, 711 insertions(+) diff --git a/src/antsibull_docs/data/docsite/ansible-docsite/plugin.rst.j2 b/src/antsibull_docs/data/docsite/ansible-docsite/plugin.rst.j2 index e9f6c53d..99af66af 100644 --- a/src/antsibull_docs/data/docsite/ansible-docsite/plugin.rst.j2 +++ b/src/antsibull_docs/data/docsite/ansible-docsite/plugin.rst.j2 @@ -262,6 +262,15 @@ Parameters @{ parameters_rst(doc['options'] | remove_options_from_list(options_to_skip) | dictsort, suboption_key='suboptions') }@ {% endif %} {% endif %} +{% if plugin_type != 'module' %} + +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). +{% endif %} .. Attributes diff --git a/src/antsibull_docs/data/docsite/simplified-rst/plugin.rst.j2 b/src/antsibull_docs/data/docsite/simplified-rst/plugin.rst.j2 index 2e9fcd4c..952ffc90 100644 --- a/src/antsibull_docs/data/docsite/simplified-rst/plugin.rst.j2 +++ b/src/antsibull_docs/data/docsite/simplified-rst/plugin.rst.j2 @@ -197,6 +197,15 @@ Parameters @{ parameters_html(doc['options'] | remove_options_from_list(options_to_skip) | dictsort, suboption_key='suboptions') }@ {% endif %} +{% if plugin_type != 'module' %} + +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). +{% endif %} {% if doc['attributes'] %} diff --git a/tests/functional/baseline-default/collections/ns2/col/bar_filter.rst b/tests/functional/baseline-default/collections/ns2/col/bar_filter.rst index 959c448a..0e4b69db 100644 --- a/tests/functional/baseline-default/collections/ns2/col/bar_filter.rst +++ b/tests/functional/baseline-default/collections/ns2/col/bar_filter.rst @@ -300,6 +300,13 @@ example: ``input | ns2.col.bar(key1=value1, key2=value2, ...)`` +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/bar_test.rst b/tests/functional/baseline-default/collections/ns2/col/bar_test.rst index 03bafb04..a45dfb33 100644 --- a/tests/functional/baseline-default/collections/ns2/col/bar_test.rst +++ b/tests/functional/baseline-default/collections/ns2/col/bar_test.rst @@ -121,6 +121,13 @@ This describes the input of the test, the value before ``is ns2.col.bar`` or ``i .. Options +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/foo_become.rst b/tests/functional/baseline-default/collections/ns2/col/foo_become.rst index a53419ea..e8c326ed 100644 --- a/tests/functional/baseline-default/collections/ns2/col/foo_become.rst +++ b/tests/functional/baseline-default/collections/ns2/col/foo_become.rst @@ -315,6 +315,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/foo_cache.rst b/tests/functional/baseline-default/collections/ns2/col/foo_cache.rst index c35b5bcb..5c08ebe8 100644 --- a/tests/functional/baseline-default/collections/ns2/col/foo_cache.rst +++ b/tests/functional/baseline-default/collections/ns2/col/foo_cache.rst @@ -169,6 +169,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/foo_callback.rst b/tests/functional/baseline-default/collections/ns2/col/foo_callback.rst index db7b23df..5bfe8d06 100644 --- a/tests/functional/baseline-default/collections/ns2/col/foo_callback.rst +++ b/tests/functional/baseline-default/collections/ns2/col/foo_callback.rst @@ -123,6 +123,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/foo_cliconf.rst b/tests/functional/baseline-default/collections/ns2/col/foo_cliconf.rst index 5c3e0f89..83de579a 100644 --- a/tests/functional/baseline-default/collections/ns2/col/foo_cliconf.rst +++ b/tests/functional/baseline-default/collections/ns2/col/foo_cliconf.rst @@ -63,6 +63,13 @@ Synopsis .. Options +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/foo_connection.rst b/tests/functional/baseline-default/collections/ns2/col/foo_connection.rst index f463f2e4..ac8d51cb 100644 --- a/tests/functional/baseline-default/collections/ns2/col/foo_connection.rst +++ b/tests/functional/baseline-default/collections/ns2/col/foo_connection.rst @@ -173,6 +173,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/foo_filter.rst b/tests/functional/baseline-default/collections/ns2/col/foo_filter.rst index 1071beb9..17104cf3 100644 --- a/tests/functional/baseline-default/collections/ns2/col/foo_filter.rst +++ b/tests/functional/baseline-default/collections/ns2/col/foo_filter.rst @@ -214,6 +214,13 @@ example: ``input | ns2.col.foo(key1=value1, key2=value2, ...)`` +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/foo_inventory.rst b/tests/functional/baseline-default/collections/ns2/col/foo_inventory.rst index a3936f5d..277fc756 100644 --- a/tests/functional/baseline-default/collections/ns2/col/foo_inventory.rst +++ b/tests/functional/baseline-default/collections/ns2/col/foo_inventory.rst @@ -117,6 +117,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/foo_lookup.rst b/tests/functional/baseline-default/collections/ns2/col/foo_lookup.rst index e9fa93e1..70f690a0 100644 --- a/tests/functional/baseline-default/collections/ns2/col/foo_lookup.rst +++ b/tests/functional/baseline-default/collections/ns2/col/foo_lookup.rst @@ -176,6 +176,13 @@ examples: ``lookup('ns2.col.foo', key1=value1, key2=value2, ...)`` and ``query(' +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/foo_shell.rst b/tests/functional/baseline-default/collections/ns2/col/foo_shell.rst index 9fe46cd1..ddc37a93 100644 --- a/tests/functional/baseline-default/collections/ns2/col/foo_shell.rst +++ b/tests/functional/baseline-default/collections/ns2/col/foo_shell.rst @@ -180,6 +180,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/foo_strategy.rst b/tests/functional/baseline-default/collections/ns2/col/foo_strategy.rst index ab6c7792..54594bb2 100644 --- a/tests/functional/baseline-default/collections/ns2/col/foo_strategy.rst +++ b/tests/functional/baseline-default/collections/ns2/col/foo_strategy.rst @@ -66,6 +66,13 @@ Synopsis .. Options +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/foo_test.rst b/tests/functional/baseline-default/collections/ns2/col/foo_test.rst index ebd9b4ae..b9e887b6 100644 --- a/tests/functional/baseline-default/collections/ns2/col/foo_test.rst +++ b/tests/functional/baseline-default/collections/ns2/col/foo_test.rst @@ -174,6 +174,13 @@ examples: ``input is ns2.col.foo(key1=value1, key2=value2, ...)`` and ``input is +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/foo_vars.rst b/tests/functional/baseline-default/collections/ns2/col/foo_vars.rst index 392557b7..751a9325 100644 --- a/tests/functional/baseline-default/collections/ns2/col/foo_vars.rst +++ b/tests/functional/baseline-default/collections/ns2/col/foo_vars.rst @@ -184,6 +184,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/bar_filter.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/bar_filter.rst index 959c448a..0e4b69db 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/bar_filter.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/bar_filter.rst @@ -300,6 +300,13 @@ example: ``input | ns2.col.bar(key1=value1, key2=value2, ...)`` +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/bar_test.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/bar_test.rst index 03bafb04..a45dfb33 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/bar_test.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/bar_test.rst @@ -121,6 +121,13 @@ This describes the input of the test, the value before ``is ns2.col.bar`` or ``i .. Options +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_become.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_become.rst index a53419ea..e8c326ed 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_become.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_become.rst @@ -315,6 +315,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_cache.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_cache.rst index c35b5bcb..5c08ebe8 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_cache.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_cache.rst @@ -169,6 +169,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_callback.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_callback.rst index db7b23df..5bfe8d06 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_callback.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_callback.rst @@ -123,6 +123,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_cliconf.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_cliconf.rst index 5c3e0f89..83de579a 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_cliconf.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_cliconf.rst @@ -63,6 +63,13 @@ Synopsis .. Options +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_connection.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_connection.rst index f463f2e4..ac8d51cb 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_connection.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_connection.rst @@ -173,6 +173,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_filter.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_filter.rst index 1071beb9..17104cf3 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_filter.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_filter.rst @@ -214,6 +214,13 @@ example: ``input | ns2.col.foo(key1=value1, key2=value2, ...)`` +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_inventory.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_inventory.rst index a3936f5d..277fc756 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_inventory.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_inventory.rst @@ -117,6 +117,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_lookup.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_lookup.rst index e9fa93e1..70f690a0 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_lookup.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_lookup.rst @@ -176,6 +176,13 @@ examples: ``lookup('ns2.col.foo', key1=value1, key2=value2, ...)`` and ``query(' +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_shell.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_shell.rst index 9fe46cd1..ddc37a93 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_shell.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_shell.rst @@ -180,6 +180,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_strategy.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_strategy.rst index ab6c7792..54594bb2 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_strategy.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_strategy.rst @@ -66,6 +66,13 @@ Synopsis .. Options +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_test.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_test.rst index ebd9b4ae..b9e887b6 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_test.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_test.rst @@ -174,6 +174,13 @@ examples: ``input is ns2.col.foo(key1=value1, key2=value2, ...)`` and ``input is +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_vars.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_vars.rst index 392557b7..751a9325 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_vars.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_vars.rst @@ -184,6 +184,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/bar_filter.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/bar_filter.rst index a271d82d..6e2a75ed 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/bar_filter.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/bar_filter.rst @@ -297,6 +297,13 @@ example: ``input | ns2.col.bar(key1=value1, key2=value2, ...)`` +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/bar_test.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/bar_test.rst index 0cbb84cc..f8fc26b7 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/bar_test.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/bar_test.rst @@ -118,6 +118,13 @@ This describes the input of the test, the value before ``is ns2.col.bar`` or ``i .. Options +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_become.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_become.rst index d4544370..4d774b6e 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_become.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_become.rst @@ -312,6 +312,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_cache.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_cache.rst index 0e35456f..e36d466b 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_cache.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_cache.rst @@ -166,6 +166,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_callback.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_callback.rst index 756ac9e3..013b191b 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_callback.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_callback.rst @@ -120,6 +120,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_cliconf.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_cliconf.rst index e986d3b2..7347bb11 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_cliconf.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_cliconf.rst @@ -60,6 +60,13 @@ Synopsis .. Options +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_connection.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_connection.rst index 18c4663b..2119d969 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_connection.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_connection.rst @@ -170,6 +170,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_filter.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_filter.rst index 08718853..b68f8bc0 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_filter.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_filter.rst @@ -211,6 +211,13 @@ example: ``input | ns2.col.foo(key1=value1, key2=value2, ...)`` +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_inventory.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_inventory.rst index b54d9027..a4f84d95 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_inventory.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_inventory.rst @@ -114,6 +114,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_lookup.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_lookup.rst index 00fd50b8..16e1f99e 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_lookup.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_lookup.rst @@ -173,6 +173,13 @@ examples: ``lookup('ns2.col.foo', key1=value1, key2=value2, ...)`` and ``query(' +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_shell.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_shell.rst index ce28f9bd..e0576fa4 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_shell.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_shell.rst @@ -177,6 +177,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_strategy.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_strategy.rst index 9b971f6c..b4c74b1c 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_strategy.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_strategy.rst @@ -63,6 +63,13 @@ Synopsis .. Options +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_test.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_test.rst index 740e8d19..402b9f1c 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_test.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_test.rst @@ -171,6 +171,13 @@ examples: ``input is ns2.col.foo(key1=value1, key2=value2, ...)`` and ``input is +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_vars.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_vars.rst index 37ad8754..157c3aeb 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_vars.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_vars.rst @@ -181,6 +181,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-plugin/ns2.col.foo_lookup.rst b/tests/functional/baseline-plugin/ns2.col.foo_lookup.rst index 1158cee3..2ed6a529 100644 --- a/tests/functional/baseline-plugin/ns2.col.foo_lookup.rst +++ b/tests/functional/baseline-plugin/ns2.col.foo_lookup.rst @@ -175,6 +175,13 @@ examples: ``lookup('ns2.col.foo', key1=value1, key2=value2, ...)`` and ``query(' +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/bar_filter.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/bar_filter.rst index f8b294ca..ff706dbb 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/bar_filter.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/bar_filter.rst @@ -181,6 +181,13 @@ example: ``input | ns2.col.bar(key1=value1, key2=value2, ...)`` +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + Notes ----- diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/bar_test.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/bar_test.rst index e3037aa2..13590e61 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/bar_test.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/bar_test.rst @@ -67,6 +67,13 @@ This describes the input of the test, the value before ``is ns2.col.bar`` or ``i +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_become.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_become.rst index 9e3401d4..eedc895f 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_become.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_become.rst @@ -190,6 +190,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_cache.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_cache.rst index e55689f0..b1c12f6f 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_cache.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_cache.rst @@ -91,6 +91,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_callback.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_callback.rst index 56fd3226..2fc22dd4 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_callback.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_callback.rst @@ -68,6 +68,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_cliconf.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_cliconf.rst index 9b4e6913..b6278c21 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_cliconf.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_cliconf.rst @@ -31,6 +31,13 @@ Synopsis +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_connection.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_connection.rst index 0a199264..0bf5e28e 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_connection.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_connection.rst @@ -101,6 +101,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + Notes ----- diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_filter.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_filter.rst index ad3931cc..cf26190e 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_filter.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_filter.rst @@ -118,6 +118,13 @@ example: ``input | ns2.col.foo(key1=value1, key2=value2, ...)`` +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_inventory.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_inventory.rst index b7770ace..d84eeefb 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_inventory.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_inventory.rst @@ -63,6 +63,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_lookup.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_lookup.rst index 5046c30f..a91fa0e8 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_lookup.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_lookup.rst @@ -102,6 +102,13 @@ examples: ``lookup('ns2.col.foo', key1=value1, key2=value2, ...)`` and ``query(' +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + Notes ----- diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_shell.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_shell.rst index 9490fee7..c71d0806 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_shell.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_shell.rst @@ -100,6 +100,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_strategy.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_strategy.rst index 5b15fa4b..5cab9b8f 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_strategy.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_strategy.rst @@ -32,6 +32,13 @@ Synopsis +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_test.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_test.rst index 493e0b81..559d4596 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_test.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_test.rst @@ -101,6 +101,13 @@ examples: ``input is ns2.col.foo(key1=value1, key2=value2, ...)`` and ``input is +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_vars.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_vars.rst index e840e3bb..6caaeb30 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_vars.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_vars.rst @@ -103,6 +103,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/bar_filter.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/bar_filter.rst index c4a63cfa..98fbbbac 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/bar_filter.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/bar_filter.rst @@ -181,6 +181,13 @@ example: ``input | ns2.col.bar(key1=value1, key2=value2, ...)`` +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + Notes ----- diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/bar_test.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/bar_test.rst index 1e77b48a..32f14aab 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/bar_test.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/bar_test.rst @@ -67,6 +67,13 @@ This describes the input of the test, the value before ``is ns2.col.bar`` or ``i +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_become.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_become.rst index 42207e45..76f8f60e 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_become.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_become.rst @@ -190,6 +190,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_cache.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_cache.rst index 703f89f0..eb2611ed 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_cache.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_cache.rst @@ -91,6 +91,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_callback.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_callback.rst index e4c043b8..a08e38d7 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_callback.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_callback.rst @@ -68,6 +68,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_cliconf.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_cliconf.rst index fbd80892..55cc7cc0 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_cliconf.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_cliconf.rst @@ -31,6 +31,13 @@ Synopsis +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_connection.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_connection.rst index 162c590e..cd88e5d4 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_connection.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_connection.rst @@ -101,6 +101,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + Notes ----- diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_filter.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_filter.rst index a20c97d5..195b1a8e 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_filter.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_filter.rst @@ -118,6 +118,13 @@ example: ``input | ns2.col.foo(key1=value1, key2=value2, ...)`` +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_inventory.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_inventory.rst index 0dc0aace..bffe1887 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_inventory.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_inventory.rst @@ -63,6 +63,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_lookup.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_lookup.rst index e8365f8a..1f07c082 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_lookup.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_lookup.rst @@ -102,6 +102,13 @@ examples: ``lookup('ns2.col.foo', key1=value1, key2=value2, ...)`` and ``query(' +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + Notes ----- diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_shell.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_shell.rst index 32188298..ea277fbb 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_shell.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_shell.rst @@ -100,6 +100,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_strategy.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_strategy.rst index aa965c7b..bf2281ac 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_strategy.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_strategy.rst @@ -32,6 +32,13 @@ Synopsis +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_test.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_test.rst index 79fb69f4..f856a1fa 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_test.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_test.rst @@ -101,6 +101,13 @@ examples: ``input is ns2.col.foo(key1=value1, key2=value2, ...)`` and ``input is +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_vars.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_vars.rst index 4d4f9037..838331cd 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_vars.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_vars.rst @@ -103,6 +103,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + diff --git a/tests/functional/baseline-squash-hierarchy/bar_filter.rst b/tests/functional/baseline-squash-hierarchy/bar_filter.rst index 959c448a..0e4b69db 100644 --- a/tests/functional/baseline-squash-hierarchy/bar_filter.rst +++ b/tests/functional/baseline-squash-hierarchy/bar_filter.rst @@ -300,6 +300,13 @@ example: ``input | ns2.col.bar(key1=value1, key2=value2, ...)`` +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/bar_test.rst b/tests/functional/baseline-squash-hierarchy/bar_test.rst index 03bafb04..a45dfb33 100644 --- a/tests/functional/baseline-squash-hierarchy/bar_test.rst +++ b/tests/functional/baseline-squash-hierarchy/bar_test.rst @@ -121,6 +121,13 @@ This describes the input of the test, the value before ``is ns2.col.bar`` or ``i .. Options +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/foo_become.rst b/tests/functional/baseline-squash-hierarchy/foo_become.rst index a53419ea..e8c326ed 100644 --- a/tests/functional/baseline-squash-hierarchy/foo_become.rst +++ b/tests/functional/baseline-squash-hierarchy/foo_become.rst @@ -315,6 +315,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/foo_cache.rst b/tests/functional/baseline-squash-hierarchy/foo_cache.rst index c35b5bcb..5c08ebe8 100644 --- a/tests/functional/baseline-squash-hierarchy/foo_cache.rst +++ b/tests/functional/baseline-squash-hierarchy/foo_cache.rst @@ -169,6 +169,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/foo_callback.rst b/tests/functional/baseline-squash-hierarchy/foo_callback.rst index db7b23df..5bfe8d06 100644 --- a/tests/functional/baseline-squash-hierarchy/foo_callback.rst +++ b/tests/functional/baseline-squash-hierarchy/foo_callback.rst @@ -123,6 +123,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/foo_cliconf.rst b/tests/functional/baseline-squash-hierarchy/foo_cliconf.rst index 5c3e0f89..83de579a 100644 --- a/tests/functional/baseline-squash-hierarchy/foo_cliconf.rst +++ b/tests/functional/baseline-squash-hierarchy/foo_cliconf.rst @@ -63,6 +63,13 @@ Synopsis .. Options +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/foo_connection.rst b/tests/functional/baseline-squash-hierarchy/foo_connection.rst index f463f2e4..ac8d51cb 100644 --- a/tests/functional/baseline-squash-hierarchy/foo_connection.rst +++ b/tests/functional/baseline-squash-hierarchy/foo_connection.rst @@ -173,6 +173,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/foo_filter.rst b/tests/functional/baseline-squash-hierarchy/foo_filter.rst index 1071beb9..17104cf3 100644 --- a/tests/functional/baseline-squash-hierarchy/foo_filter.rst +++ b/tests/functional/baseline-squash-hierarchy/foo_filter.rst @@ -214,6 +214,13 @@ example: ``input | ns2.col.foo(key1=value1, key2=value2, ...)`` +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/foo_inventory.rst b/tests/functional/baseline-squash-hierarchy/foo_inventory.rst index a3936f5d..277fc756 100644 --- a/tests/functional/baseline-squash-hierarchy/foo_inventory.rst +++ b/tests/functional/baseline-squash-hierarchy/foo_inventory.rst @@ -117,6 +117,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/foo_lookup.rst b/tests/functional/baseline-squash-hierarchy/foo_lookup.rst index e9fa93e1..70f690a0 100644 --- a/tests/functional/baseline-squash-hierarchy/foo_lookup.rst +++ b/tests/functional/baseline-squash-hierarchy/foo_lookup.rst @@ -176,6 +176,13 @@ examples: ``lookup('ns2.col.foo', key1=value1, key2=value2, ...)`` and ``query(' +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/foo_shell.rst b/tests/functional/baseline-squash-hierarchy/foo_shell.rst index 9fe46cd1..ddc37a93 100644 --- a/tests/functional/baseline-squash-hierarchy/foo_shell.rst +++ b/tests/functional/baseline-squash-hierarchy/foo_shell.rst @@ -180,6 +180,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/foo_strategy.rst b/tests/functional/baseline-squash-hierarchy/foo_strategy.rst index ab6c7792..54594bb2 100644 --- a/tests/functional/baseline-squash-hierarchy/foo_strategy.rst +++ b/tests/functional/baseline-squash-hierarchy/foo_strategy.rst @@ -66,6 +66,13 @@ Synopsis .. Options +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/foo_test.rst b/tests/functional/baseline-squash-hierarchy/foo_test.rst index ebd9b4ae..b9e887b6 100644 --- a/tests/functional/baseline-squash-hierarchy/foo_test.rst +++ b/tests/functional/baseline-squash-hierarchy/foo_test.rst @@ -174,6 +174,13 @@ examples: ``input is ns2.col.foo(key1=value1, key2=value2, ...)`` and ``input is +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/foo_vars.rst b/tests/functional/baseline-squash-hierarchy/foo_vars.rst index 392557b7..751a9325 100644 --- a/tests/functional/baseline-squash-hierarchy/foo_vars.rst +++ b/tests/functional/baseline-squash-hierarchy/foo_vars.rst @@ -184,6 +184,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/bar_filter.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/bar_filter.rst index 645e1cf1..1ccea8f8 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/bar_filter.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/bar_filter.rst @@ -219,6 +219,13 @@ example: ``input | ns2.col.bar(key1=value1, key2=value2, ...)`` +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/bar_test.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/bar_test.rst index 1667a9ab..11fc1695 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/bar_test.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/bar_test.rst @@ -101,6 +101,13 @@ This describes the input of the test, the value before ``is ns2.col.bar`` or ``i .. Options +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_become.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_become.rst index 1bcdf59f..79fd183f 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_become.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_become.rst @@ -222,6 +222,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_cache.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_cache.rst index 200372c6..5a0cb806 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_cache.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_cache.rst @@ -125,6 +125,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_callback.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_callback.rst index eaa00a36..aa01e485 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_callback.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_callback.rst @@ -103,6 +103,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_cliconf.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_cliconf.rst index 5c3e0f89..83de579a 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_cliconf.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_cliconf.rst @@ -63,6 +63,13 @@ Synopsis .. Options +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_connection.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_connection.rst index a2ab7eb5..3246fd97 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_connection.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_connection.rst @@ -135,6 +135,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_filter.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_filter.rst index 3a27e7c3..cda746c4 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_filter.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_filter.rst @@ -154,6 +154,13 @@ example: ``input | ns2.col.foo(key1=value1, key2=value2, ...)`` +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_inventory.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_inventory.rst index 29a18418..7b4021eb 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_inventory.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_inventory.rst @@ -97,6 +97,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_lookup.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_lookup.rst index 855c5ea1..4831712c 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_lookup.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_lookup.rst @@ -138,6 +138,13 @@ examples: ``lookup('ns2.col.foo', key1=value1, key2=value2, ...)`` and ``query(' +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_shell.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_shell.rst index 5a21a244..0cfe4fad 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_shell.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_shell.rst @@ -134,6 +134,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_strategy.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_strategy.rst index ab6c7792..54594bb2 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_strategy.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_strategy.rst @@ -66,6 +66,13 @@ Synopsis .. Options +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_test.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_test.rst index 49bc2ac6..2be1daca 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_test.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_test.rst @@ -135,6 +135,13 @@ examples: ``input is ns2.col.foo(key1=value1, key2=value2, ...)`` and ``input is +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_vars.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_vars.rst index e4da5c7b..f5ee1aaf 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_vars.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_vars.rst @@ -137,6 +137,13 @@ Parameters +.. note:: + + Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. + For example, a variable that is lower in the list will override a variable that is higher up. + The entry types are also ordered be precedence from low to high priority order. + For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). + .. Attributes From 43185e74def008a7a06295edfaf36994bb48978b Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Tue, 15 Jul 2025 23:03:21 +0200 Subject: [PATCH 3/4] Fix typos. Co-authored-by: Sandra McCann --- src/antsibull_docs/data/docsite/ansible-docsite/plugin.rst.j2 | 2 +- src/antsibull_docs/data/docsite/simplified-rst/plugin.rst.j2 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/antsibull_docs/data/docsite/ansible-docsite/plugin.rst.j2 b/src/antsibull_docs/data/docsite/ansible-docsite/plugin.rst.j2 index 99af66af..fd95a4ac 100644 --- a/src/antsibull_docs/data/docsite/ansible-docsite/plugin.rst.j2 +++ b/src/antsibull_docs/data/docsite/ansible-docsite/plugin.rst.j2 @@ -268,7 +268,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). {% endif %} diff --git a/src/antsibull_docs/data/docsite/simplified-rst/plugin.rst.j2 b/src/antsibull_docs/data/docsite/simplified-rst/plugin.rst.j2 index 952ffc90..42a6b4cd 100644 --- a/src/antsibull_docs/data/docsite/simplified-rst/plugin.rst.j2 +++ b/src/antsibull_docs/data/docsite/simplified-rst/plugin.rst.j2 @@ -203,7 +203,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). {% endif %} From a3ec63d788ec4e768a72460bec5d01ac5edebed3 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Tue, 15 Jul 2025 23:04:16 +0200 Subject: [PATCH 4/4] Update test data. --- .../baseline-default/collections/ns2/col/bar_filter.rst | 2 +- .../baseline-default/collections/ns2/col/bar_test.rst | 2 +- .../baseline-default/collections/ns2/col/foo_become.rst | 2 +- .../baseline-default/collections/ns2/col/foo_cache.rst | 2 +- .../baseline-default/collections/ns2/col/foo_callback.rst | 2 +- .../baseline-default/collections/ns2/col/foo_cliconf.rst | 2 +- .../baseline-default/collections/ns2/col/foo_connection.rst | 2 +- .../baseline-default/collections/ns2/col/foo_filter.rst | 2 +- .../baseline-default/collections/ns2/col/foo_inventory.rst | 2 +- .../baseline-default/collections/ns2/col/foo_lookup.rst | 2 +- .../baseline-default/collections/ns2/col/foo_shell.rst | 2 +- .../baseline-default/collections/ns2/col/foo_strategy.rst | 2 +- .../baseline-default/collections/ns2/col/foo_test.rst | 2 +- .../baseline-default/collections/ns2/col/foo_vars.rst | 2 +- .../baseline-no-breadcrumbs/collections/ns2/col/bar_filter.rst | 2 +- .../baseline-no-breadcrumbs/collections/ns2/col/bar_test.rst | 2 +- .../baseline-no-breadcrumbs/collections/ns2/col/foo_become.rst | 2 +- .../baseline-no-breadcrumbs/collections/ns2/col/foo_cache.rst | 2 +- .../collections/ns2/col/foo_callback.rst | 2 +- .../baseline-no-breadcrumbs/collections/ns2/col/foo_cliconf.rst | 2 +- .../collections/ns2/col/foo_connection.rst | 2 +- .../baseline-no-breadcrumbs/collections/ns2/col/foo_filter.rst | 2 +- .../collections/ns2/col/foo_inventory.rst | 2 +- .../baseline-no-breadcrumbs/collections/ns2/col/foo_lookup.rst | 2 +- .../baseline-no-breadcrumbs/collections/ns2/col/foo_shell.rst | 2 +- .../collections/ns2/col/foo_strategy.rst | 2 +- .../baseline-no-breadcrumbs/collections/ns2/col/foo_test.rst | 2 +- .../baseline-no-breadcrumbs/collections/ns2/col/foo_vars.rst | 2 +- .../baseline-no-indexes/collections/ns2/col/bar_filter.rst | 2 +- .../baseline-no-indexes/collections/ns2/col/bar_test.rst | 2 +- .../baseline-no-indexes/collections/ns2/col/foo_become.rst | 2 +- .../baseline-no-indexes/collections/ns2/col/foo_cache.rst | 2 +- .../baseline-no-indexes/collections/ns2/col/foo_callback.rst | 2 +- .../baseline-no-indexes/collections/ns2/col/foo_cliconf.rst | 2 +- .../baseline-no-indexes/collections/ns2/col/foo_connection.rst | 2 +- .../baseline-no-indexes/collections/ns2/col/foo_filter.rst | 2 +- .../baseline-no-indexes/collections/ns2/col/foo_inventory.rst | 2 +- .../baseline-no-indexes/collections/ns2/col/foo_lookup.rst | 2 +- .../baseline-no-indexes/collections/ns2/col/foo_shell.rst | 2 +- .../baseline-no-indexes/collections/ns2/col/foo_strategy.rst | 2 +- .../baseline-no-indexes/collections/ns2/col/foo_test.rst | 2 +- .../baseline-no-indexes/collections/ns2/col/foo_vars.rst | 2 +- tests/functional/baseline-plugin/ns2.col.foo_lookup.rst | 2 +- .../baseline-simplified-rst-squash-hierarchy/bar_filter.rst | 2 +- .../baseline-simplified-rst-squash-hierarchy/bar_test.rst | 2 +- .../baseline-simplified-rst-squash-hierarchy/foo_become.rst | 2 +- .../baseline-simplified-rst-squash-hierarchy/foo_cache.rst | 2 +- .../baseline-simplified-rst-squash-hierarchy/foo_callback.rst | 2 +- .../baseline-simplified-rst-squash-hierarchy/foo_cliconf.rst | 2 +- .../baseline-simplified-rst-squash-hierarchy/foo_connection.rst | 2 +- .../baseline-simplified-rst-squash-hierarchy/foo_filter.rst | 2 +- .../baseline-simplified-rst-squash-hierarchy/foo_inventory.rst | 2 +- .../baseline-simplified-rst-squash-hierarchy/foo_lookup.rst | 2 +- .../baseline-simplified-rst-squash-hierarchy/foo_shell.rst | 2 +- .../baseline-simplified-rst-squash-hierarchy/foo_strategy.rst | 2 +- .../baseline-simplified-rst-squash-hierarchy/foo_test.rst | 2 +- .../baseline-simplified-rst-squash-hierarchy/foo_vars.rst | 2 +- .../baseline-simplified-rst/collections/ns2/col/bar_filter.rst | 2 +- .../baseline-simplified-rst/collections/ns2/col/bar_test.rst | 2 +- .../baseline-simplified-rst/collections/ns2/col/foo_become.rst | 2 +- .../baseline-simplified-rst/collections/ns2/col/foo_cache.rst | 2 +- .../collections/ns2/col/foo_callback.rst | 2 +- .../baseline-simplified-rst/collections/ns2/col/foo_cliconf.rst | 2 +- .../collections/ns2/col/foo_connection.rst | 2 +- .../baseline-simplified-rst/collections/ns2/col/foo_filter.rst | 2 +- .../collections/ns2/col/foo_inventory.rst | 2 +- .../baseline-simplified-rst/collections/ns2/col/foo_lookup.rst | 2 +- .../baseline-simplified-rst/collections/ns2/col/foo_shell.rst | 2 +- .../collections/ns2/col/foo_strategy.rst | 2 +- .../baseline-simplified-rst/collections/ns2/col/foo_test.rst | 2 +- .../baseline-simplified-rst/collections/ns2/col/foo_vars.rst | 2 +- tests/functional/baseline-squash-hierarchy/bar_filter.rst | 2 +- tests/functional/baseline-squash-hierarchy/bar_test.rst | 2 +- tests/functional/baseline-squash-hierarchy/foo_become.rst | 2 +- tests/functional/baseline-squash-hierarchy/foo_cache.rst | 2 +- tests/functional/baseline-squash-hierarchy/foo_callback.rst | 2 +- tests/functional/baseline-squash-hierarchy/foo_cliconf.rst | 2 +- tests/functional/baseline-squash-hierarchy/foo_connection.rst | 2 +- tests/functional/baseline-squash-hierarchy/foo_filter.rst | 2 +- tests/functional/baseline-squash-hierarchy/foo_inventory.rst | 2 +- tests/functional/baseline-squash-hierarchy/foo_lookup.rst | 2 +- tests/functional/baseline-squash-hierarchy/foo_shell.rst | 2 +- tests/functional/baseline-squash-hierarchy/foo_strategy.rst | 2 +- tests/functional/baseline-squash-hierarchy/foo_test.rst | 2 +- tests/functional/baseline-squash-hierarchy/foo_vars.rst | 2 +- .../baseline-use-html-blobs/collections/ns2/col/bar_filter.rst | 2 +- .../baseline-use-html-blobs/collections/ns2/col/bar_test.rst | 2 +- .../baseline-use-html-blobs/collections/ns2/col/foo_become.rst | 2 +- .../baseline-use-html-blobs/collections/ns2/col/foo_cache.rst | 2 +- .../collections/ns2/col/foo_callback.rst | 2 +- .../baseline-use-html-blobs/collections/ns2/col/foo_cliconf.rst | 2 +- .../collections/ns2/col/foo_connection.rst | 2 +- .../baseline-use-html-blobs/collections/ns2/col/foo_filter.rst | 2 +- .../collections/ns2/col/foo_inventory.rst | 2 +- .../baseline-use-html-blobs/collections/ns2/col/foo_lookup.rst | 2 +- .../baseline-use-html-blobs/collections/ns2/col/foo_shell.rst | 2 +- .../collections/ns2/col/foo_strategy.rst | 2 +- .../baseline-use-html-blobs/collections/ns2/col/foo_test.rst | 2 +- .../baseline-use-html-blobs/collections/ns2/col/foo_vars.rst | 2 +- 99 files changed, 99 insertions(+), 99 deletions(-) diff --git a/tests/functional/baseline-default/collections/ns2/col/bar_filter.rst b/tests/functional/baseline-default/collections/ns2/col/bar_filter.rst index 0e4b69db..c244485c 100644 --- a/tests/functional/baseline-default/collections/ns2/col/bar_filter.rst +++ b/tests/functional/baseline-default/collections/ns2/col/bar_filter.rst @@ -304,7 +304,7 @@ example: ``input | ns2.col.bar(key1=value1, key2=value2, ...)`` Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/bar_test.rst b/tests/functional/baseline-default/collections/ns2/col/bar_test.rst index a45dfb33..0192fc1a 100644 --- a/tests/functional/baseline-default/collections/ns2/col/bar_test.rst +++ b/tests/functional/baseline-default/collections/ns2/col/bar_test.rst @@ -125,7 +125,7 @@ This describes the input of the test, the value before ``is ns2.col.bar`` or ``i Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/foo_become.rst b/tests/functional/baseline-default/collections/ns2/col/foo_become.rst index e8c326ed..a13772c6 100644 --- a/tests/functional/baseline-default/collections/ns2/col/foo_become.rst +++ b/tests/functional/baseline-default/collections/ns2/col/foo_become.rst @@ -319,7 +319,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/foo_cache.rst b/tests/functional/baseline-default/collections/ns2/col/foo_cache.rst index 5c08ebe8..cec42488 100644 --- a/tests/functional/baseline-default/collections/ns2/col/foo_cache.rst +++ b/tests/functional/baseline-default/collections/ns2/col/foo_cache.rst @@ -173,7 +173,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/foo_callback.rst b/tests/functional/baseline-default/collections/ns2/col/foo_callback.rst index 5bfe8d06..05def51c 100644 --- a/tests/functional/baseline-default/collections/ns2/col/foo_callback.rst +++ b/tests/functional/baseline-default/collections/ns2/col/foo_callback.rst @@ -127,7 +127,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/foo_cliconf.rst b/tests/functional/baseline-default/collections/ns2/col/foo_cliconf.rst index 83de579a..7d9bbe38 100644 --- a/tests/functional/baseline-default/collections/ns2/col/foo_cliconf.rst +++ b/tests/functional/baseline-default/collections/ns2/col/foo_cliconf.rst @@ -67,7 +67,7 @@ Synopsis Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/foo_connection.rst b/tests/functional/baseline-default/collections/ns2/col/foo_connection.rst index ac8d51cb..8dcd9e1f 100644 --- a/tests/functional/baseline-default/collections/ns2/col/foo_connection.rst +++ b/tests/functional/baseline-default/collections/ns2/col/foo_connection.rst @@ -177,7 +177,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/foo_filter.rst b/tests/functional/baseline-default/collections/ns2/col/foo_filter.rst index 17104cf3..ae322a96 100644 --- a/tests/functional/baseline-default/collections/ns2/col/foo_filter.rst +++ b/tests/functional/baseline-default/collections/ns2/col/foo_filter.rst @@ -218,7 +218,7 @@ example: ``input | ns2.col.foo(key1=value1, key2=value2, ...)`` Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/foo_inventory.rst b/tests/functional/baseline-default/collections/ns2/col/foo_inventory.rst index 277fc756..baa4f2c5 100644 --- a/tests/functional/baseline-default/collections/ns2/col/foo_inventory.rst +++ b/tests/functional/baseline-default/collections/ns2/col/foo_inventory.rst @@ -121,7 +121,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/foo_lookup.rst b/tests/functional/baseline-default/collections/ns2/col/foo_lookup.rst index 70f690a0..e592c621 100644 --- a/tests/functional/baseline-default/collections/ns2/col/foo_lookup.rst +++ b/tests/functional/baseline-default/collections/ns2/col/foo_lookup.rst @@ -180,7 +180,7 @@ examples: ``lookup('ns2.col.foo', key1=value1, key2=value2, ...)`` and ``query(' Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/foo_shell.rst b/tests/functional/baseline-default/collections/ns2/col/foo_shell.rst index ddc37a93..b3c58411 100644 --- a/tests/functional/baseline-default/collections/ns2/col/foo_shell.rst +++ b/tests/functional/baseline-default/collections/ns2/col/foo_shell.rst @@ -184,7 +184,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/foo_strategy.rst b/tests/functional/baseline-default/collections/ns2/col/foo_strategy.rst index 54594bb2..969e515d 100644 --- a/tests/functional/baseline-default/collections/ns2/col/foo_strategy.rst +++ b/tests/functional/baseline-default/collections/ns2/col/foo_strategy.rst @@ -70,7 +70,7 @@ Synopsis Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/foo_test.rst b/tests/functional/baseline-default/collections/ns2/col/foo_test.rst index b9e887b6..e467d9f2 100644 --- a/tests/functional/baseline-default/collections/ns2/col/foo_test.rst +++ b/tests/functional/baseline-default/collections/ns2/col/foo_test.rst @@ -178,7 +178,7 @@ examples: ``input is ns2.col.foo(key1=value1, key2=value2, ...)`` and ``input is Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-default/collections/ns2/col/foo_vars.rst b/tests/functional/baseline-default/collections/ns2/col/foo_vars.rst index 751a9325..a968f281 100644 --- a/tests/functional/baseline-default/collections/ns2/col/foo_vars.rst +++ b/tests/functional/baseline-default/collections/ns2/col/foo_vars.rst @@ -188,7 +188,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/bar_filter.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/bar_filter.rst index 0e4b69db..c244485c 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/bar_filter.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/bar_filter.rst @@ -304,7 +304,7 @@ example: ``input | ns2.col.bar(key1=value1, key2=value2, ...)`` Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/bar_test.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/bar_test.rst index a45dfb33..0192fc1a 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/bar_test.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/bar_test.rst @@ -125,7 +125,7 @@ This describes the input of the test, the value before ``is ns2.col.bar`` or ``i Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_become.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_become.rst index e8c326ed..a13772c6 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_become.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_become.rst @@ -319,7 +319,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_cache.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_cache.rst index 5c08ebe8..cec42488 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_cache.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_cache.rst @@ -173,7 +173,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_callback.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_callback.rst index 5bfe8d06..05def51c 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_callback.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_callback.rst @@ -127,7 +127,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_cliconf.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_cliconf.rst index 83de579a..7d9bbe38 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_cliconf.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_cliconf.rst @@ -67,7 +67,7 @@ Synopsis Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_connection.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_connection.rst index ac8d51cb..8dcd9e1f 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_connection.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_connection.rst @@ -177,7 +177,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_filter.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_filter.rst index 17104cf3..ae322a96 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_filter.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_filter.rst @@ -218,7 +218,7 @@ example: ``input | ns2.col.foo(key1=value1, key2=value2, ...)`` Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_inventory.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_inventory.rst index 277fc756..baa4f2c5 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_inventory.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_inventory.rst @@ -121,7 +121,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_lookup.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_lookup.rst index 70f690a0..e592c621 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_lookup.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_lookup.rst @@ -180,7 +180,7 @@ examples: ``lookup('ns2.col.foo', key1=value1, key2=value2, ...)`` and ``query(' Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_shell.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_shell.rst index ddc37a93..b3c58411 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_shell.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_shell.rst @@ -184,7 +184,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_strategy.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_strategy.rst index 54594bb2..969e515d 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_strategy.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_strategy.rst @@ -70,7 +70,7 @@ Synopsis Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_test.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_test.rst index b9e887b6..e467d9f2 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_test.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_test.rst @@ -178,7 +178,7 @@ examples: ``input is ns2.col.foo(key1=value1, key2=value2, ...)`` and ``input is Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_vars.rst b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_vars.rst index 751a9325..a968f281 100644 --- a/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_vars.rst +++ b/tests/functional/baseline-no-breadcrumbs/collections/ns2/col/foo_vars.rst @@ -188,7 +188,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/bar_filter.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/bar_filter.rst index 6e2a75ed..ddb4963f 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/bar_filter.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/bar_filter.rst @@ -301,7 +301,7 @@ example: ``input | ns2.col.bar(key1=value1, key2=value2, ...)`` Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/bar_test.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/bar_test.rst index f8fc26b7..7db0de45 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/bar_test.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/bar_test.rst @@ -122,7 +122,7 @@ This describes the input of the test, the value before ``is ns2.col.bar`` or ``i Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_become.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_become.rst index 4d774b6e..25c1dc3d 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_become.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_become.rst @@ -316,7 +316,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_cache.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_cache.rst index e36d466b..84139db6 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_cache.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_cache.rst @@ -170,7 +170,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_callback.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_callback.rst index 013b191b..8b93f785 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_callback.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_callback.rst @@ -124,7 +124,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_cliconf.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_cliconf.rst index 7347bb11..12122cd8 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_cliconf.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_cliconf.rst @@ -64,7 +64,7 @@ Synopsis Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_connection.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_connection.rst index 2119d969..72db1154 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_connection.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_connection.rst @@ -174,7 +174,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_filter.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_filter.rst index b68f8bc0..295847d6 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_filter.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_filter.rst @@ -215,7 +215,7 @@ example: ``input | ns2.col.foo(key1=value1, key2=value2, ...)`` Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_inventory.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_inventory.rst index a4f84d95..7061f5b4 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_inventory.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_inventory.rst @@ -118,7 +118,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_lookup.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_lookup.rst index 16e1f99e..05826d1f 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_lookup.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_lookup.rst @@ -177,7 +177,7 @@ examples: ``lookup('ns2.col.foo', key1=value1, key2=value2, ...)`` and ``query(' Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_shell.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_shell.rst index e0576fa4..d31c846c 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_shell.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_shell.rst @@ -181,7 +181,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_strategy.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_strategy.rst index b4c74b1c..7f5e3080 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_strategy.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_strategy.rst @@ -67,7 +67,7 @@ Synopsis Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_test.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_test.rst index 402b9f1c..ad5a3599 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_test.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_test.rst @@ -175,7 +175,7 @@ examples: ``input is ns2.col.foo(key1=value1, key2=value2, ...)`` and ``input is Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_vars.rst b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_vars.rst index 157c3aeb..2382e01d 100644 --- a/tests/functional/baseline-no-indexes/collections/ns2/col/foo_vars.rst +++ b/tests/functional/baseline-no-indexes/collections/ns2/col/foo_vars.rst @@ -185,7 +185,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-plugin/ns2.col.foo_lookup.rst b/tests/functional/baseline-plugin/ns2.col.foo_lookup.rst index 2ed6a529..5aa8dfc0 100644 --- a/tests/functional/baseline-plugin/ns2.col.foo_lookup.rst +++ b/tests/functional/baseline-plugin/ns2.col.foo_lookup.rst @@ -179,7 +179,7 @@ examples: ``lookup('ns2.col.foo', key1=value1, key2=value2, ...)`` and ``query(' Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/bar_filter.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/bar_filter.rst index ff706dbb..fbca5fa8 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/bar_filter.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/bar_filter.rst @@ -185,7 +185,7 @@ example: ``input | ns2.col.bar(key1=value1, key2=value2, ...)`` Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/bar_test.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/bar_test.rst index 13590e61..62bd3b8e 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/bar_test.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/bar_test.rst @@ -71,7 +71,7 @@ This describes the input of the test, the value before ``is ns2.col.bar`` or ``i Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_become.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_become.rst index eedc895f..4f0fbed3 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_become.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_become.rst @@ -194,7 +194,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_cache.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_cache.rst index b1c12f6f..1cf0b50e 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_cache.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_cache.rst @@ -95,7 +95,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_callback.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_callback.rst index 2fc22dd4..b4e7d390 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_callback.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_callback.rst @@ -72,7 +72,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_cliconf.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_cliconf.rst index b6278c21..31631f98 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_cliconf.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_cliconf.rst @@ -35,7 +35,7 @@ Synopsis Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_connection.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_connection.rst index 0bf5e28e..3b1bd2a4 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_connection.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_connection.rst @@ -105,7 +105,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_filter.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_filter.rst index cf26190e..a043d1c5 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_filter.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_filter.rst @@ -122,7 +122,7 @@ example: ``input | ns2.col.foo(key1=value1, key2=value2, ...)`` Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_inventory.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_inventory.rst index d84eeefb..c87f95d4 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_inventory.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_inventory.rst @@ -67,7 +67,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_lookup.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_lookup.rst index a91fa0e8..8614aa13 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_lookup.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_lookup.rst @@ -106,7 +106,7 @@ examples: ``lookup('ns2.col.foo', key1=value1, key2=value2, ...)`` and ``query(' Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_shell.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_shell.rst index c71d0806..4fa3d3f5 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_shell.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_shell.rst @@ -104,7 +104,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_strategy.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_strategy.rst index 5cab9b8f..f15c8020 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_strategy.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_strategy.rst @@ -36,7 +36,7 @@ Synopsis Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_test.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_test.rst index 559d4596..59fd94a1 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_test.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_test.rst @@ -105,7 +105,7 @@ examples: ``input is ns2.col.foo(key1=value1, key2=value2, ...)`` and ``input is Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_vars.rst b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_vars.rst index 6caaeb30..dac64cc4 100644 --- a/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_vars.rst +++ b/tests/functional/baseline-simplified-rst-squash-hierarchy/foo_vars.rst @@ -107,7 +107,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/bar_filter.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/bar_filter.rst index 98fbbbac..707a540e 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/bar_filter.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/bar_filter.rst @@ -185,7 +185,7 @@ example: ``input | ns2.col.bar(key1=value1, key2=value2, ...)`` Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/bar_test.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/bar_test.rst index 32f14aab..a8bba1fa 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/bar_test.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/bar_test.rst @@ -71,7 +71,7 @@ This describes the input of the test, the value before ``is ns2.col.bar`` or ``i Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_become.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_become.rst index 76f8f60e..629c62eb 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_become.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_become.rst @@ -194,7 +194,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_cache.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_cache.rst index eb2611ed..02a597f2 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_cache.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_cache.rst @@ -95,7 +95,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_callback.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_callback.rst index a08e38d7..8231ca97 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_callback.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_callback.rst @@ -72,7 +72,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_cliconf.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_cliconf.rst index 55cc7cc0..24042bcf 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_cliconf.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_cliconf.rst @@ -35,7 +35,7 @@ Synopsis Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_connection.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_connection.rst index cd88e5d4..c4a1f6fa 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_connection.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_connection.rst @@ -105,7 +105,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_filter.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_filter.rst index 195b1a8e..7c866706 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_filter.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_filter.rst @@ -122,7 +122,7 @@ example: ``input | ns2.col.foo(key1=value1, key2=value2, ...)`` Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_inventory.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_inventory.rst index bffe1887..aac189ca 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_inventory.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_inventory.rst @@ -67,7 +67,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_lookup.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_lookup.rst index 1f07c082..3428ab77 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_lookup.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_lookup.rst @@ -106,7 +106,7 @@ examples: ``lookup('ns2.col.foo', key1=value1, key2=value2, ...)`` and ``query(' Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_shell.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_shell.rst index ea277fbb..9d9a4a01 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_shell.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_shell.rst @@ -104,7 +104,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_strategy.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_strategy.rst index bf2281ac..9b06cc5e 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_strategy.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_strategy.rst @@ -36,7 +36,7 @@ Synopsis Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_test.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_test.rst index f856a1fa..176715b2 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_test.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_test.rst @@ -105,7 +105,7 @@ examples: ``input is ns2.col.foo(key1=value1, key2=value2, ...)`` and ``input is Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_vars.rst b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_vars.rst index 838331cd..466fb249 100644 --- a/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_vars.rst +++ b/tests/functional/baseline-simplified-rst/collections/ns2/col/foo_vars.rst @@ -107,7 +107,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). diff --git a/tests/functional/baseline-squash-hierarchy/bar_filter.rst b/tests/functional/baseline-squash-hierarchy/bar_filter.rst index 0e4b69db..c244485c 100644 --- a/tests/functional/baseline-squash-hierarchy/bar_filter.rst +++ b/tests/functional/baseline-squash-hierarchy/bar_filter.rst @@ -304,7 +304,7 @@ example: ``input | ns2.col.bar(key1=value1, key2=value2, ...)`` Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/bar_test.rst b/tests/functional/baseline-squash-hierarchy/bar_test.rst index a45dfb33..0192fc1a 100644 --- a/tests/functional/baseline-squash-hierarchy/bar_test.rst +++ b/tests/functional/baseline-squash-hierarchy/bar_test.rst @@ -125,7 +125,7 @@ This describes the input of the test, the value before ``is ns2.col.bar`` or ``i Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/foo_become.rst b/tests/functional/baseline-squash-hierarchy/foo_become.rst index e8c326ed..a13772c6 100644 --- a/tests/functional/baseline-squash-hierarchy/foo_become.rst +++ b/tests/functional/baseline-squash-hierarchy/foo_become.rst @@ -319,7 +319,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/foo_cache.rst b/tests/functional/baseline-squash-hierarchy/foo_cache.rst index 5c08ebe8..cec42488 100644 --- a/tests/functional/baseline-squash-hierarchy/foo_cache.rst +++ b/tests/functional/baseline-squash-hierarchy/foo_cache.rst @@ -173,7 +173,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/foo_callback.rst b/tests/functional/baseline-squash-hierarchy/foo_callback.rst index 5bfe8d06..05def51c 100644 --- a/tests/functional/baseline-squash-hierarchy/foo_callback.rst +++ b/tests/functional/baseline-squash-hierarchy/foo_callback.rst @@ -127,7 +127,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/foo_cliconf.rst b/tests/functional/baseline-squash-hierarchy/foo_cliconf.rst index 83de579a..7d9bbe38 100644 --- a/tests/functional/baseline-squash-hierarchy/foo_cliconf.rst +++ b/tests/functional/baseline-squash-hierarchy/foo_cliconf.rst @@ -67,7 +67,7 @@ Synopsis Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/foo_connection.rst b/tests/functional/baseline-squash-hierarchy/foo_connection.rst index ac8d51cb..8dcd9e1f 100644 --- a/tests/functional/baseline-squash-hierarchy/foo_connection.rst +++ b/tests/functional/baseline-squash-hierarchy/foo_connection.rst @@ -177,7 +177,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/foo_filter.rst b/tests/functional/baseline-squash-hierarchy/foo_filter.rst index 17104cf3..ae322a96 100644 --- a/tests/functional/baseline-squash-hierarchy/foo_filter.rst +++ b/tests/functional/baseline-squash-hierarchy/foo_filter.rst @@ -218,7 +218,7 @@ example: ``input | ns2.col.foo(key1=value1, key2=value2, ...)`` Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/foo_inventory.rst b/tests/functional/baseline-squash-hierarchy/foo_inventory.rst index 277fc756..baa4f2c5 100644 --- a/tests/functional/baseline-squash-hierarchy/foo_inventory.rst +++ b/tests/functional/baseline-squash-hierarchy/foo_inventory.rst @@ -121,7 +121,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/foo_lookup.rst b/tests/functional/baseline-squash-hierarchy/foo_lookup.rst index 70f690a0..e592c621 100644 --- a/tests/functional/baseline-squash-hierarchy/foo_lookup.rst +++ b/tests/functional/baseline-squash-hierarchy/foo_lookup.rst @@ -180,7 +180,7 @@ examples: ``lookup('ns2.col.foo', key1=value1, key2=value2, ...)`` and ``query(' Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/foo_shell.rst b/tests/functional/baseline-squash-hierarchy/foo_shell.rst index ddc37a93..b3c58411 100644 --- a/tests/functional/baseline-squash-hierarchy/foo_shell.rst +++ b/tests/functional/baseline-squash-hierarchy/foo_shell.rst @@ -184,7 +184,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/foo_strategy.rst b/tests/functional/baseline-squash-hierarchy/foo_strategy.rst index 54594bb2..969e515d 100644 --- a/tests/functional/baseline-squash-hierarchy/foo_strategy.rst +++ b/tests/functional/baseline-squash-hierarchy/foo_strategy.rst @@ -70,7 +70,7 @@ Synopsis Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/foo_test.rst b/tests/functional/baseline-squash-hierarchy/foo_test.rst index b9e887b6..e467d9f2 100644 --- a/tests/functional/baseline-squash-hierarchy/foo_test.rst +++ b/tests/functional/baseline-squash-hierarchy/foo_test.rst @@ -178,7 +178,7 @@ examples: ``input is ns2.col.foo(key1=value1, key2=value2, ...)`` and ``input is Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-squash-hierarchy/foo_vars.rst b/tests/functional/baseline-squash-hierarchy/foo_vars.rst index 751a9325..a968f281 100644 --- a/tests/functional/baseline-squash-hierarchy/foo_vars.rst +++ b/tests/functional/baseline-squash-hierarchy/foo_vars.rst @@ -188,7 +188,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/bar_filter.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/bar_filter.rst index 1ccea8f8..4a273356 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/bar_filter.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/bar_filter.rst @@ -223,7 +223,7 @@ example: ``input | ns2.col.bar(key1=value1, key2=value2, ...)`` Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/bar_test.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/bar_test.rst index 11fc1695..f6b42552 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/bar_test.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/bar_test.rst @@ -105,7 +105,7 @@ This describes the input of the test, the value before ``is ns2.col.bar`` or ``i Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_become.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_become.rst index 79fd183f..b74e32c7 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_become.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_become.rst @@ -226,7 +226,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_cache.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_cache.rst index 5a0cb806..886ba69c 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_cache.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_cache.rst @@ -129,7 +129,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_callback.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_callback.rst index aa01e485..2dc98a10 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_callback.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_callback.rst @@ -107,7 +107,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_cliconf.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_cliconf.rst index 83de579a..7d9bbe38 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_cliconf.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_cliconf.rst @@ -67,7 +67,7 @@ Synopsis Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_connection.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_connection.rst index 3246fd97..a9d1e1c9 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_connection.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_connection.rst @@ -139,7 +139,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_filter.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_filter.rst index cda746c4..816156c1 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_filter.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_filter.rst @@ -158,7 +158,7 @@ example: ``input | ns2.col.foo(key1=value1, key2=value2, ...)`` Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_inventory.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_inventory.rst index 7b4021eb..49361742 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_inventory.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_inventory.rst @@ -101,7 +101,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_lookup.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_lookup.rst index 4831712c..f70005ff 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_lookup.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_lookup.rst @@ -142,7 +142,7 @@ examples: ``lookup('ns2.col.foo', key1=value1, key2=value2, ...)`` and ``query(' Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_shell.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_shell.rst index 0cfe4fad..c5b2ca62 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_shell.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_shell.rst @@ -138,7 +138,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_strategy.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_strategy.rst index 54594bb2..969e515d 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_strategy.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_strategy.rst @@ -70,7 +70,7 @@ Synopsis Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_test.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_test.rst index 2be1daca..66123e36 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_test.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_test.rst @@ -139,7 +139,7 @@ examples: ``input is ns2.col.foo(key1=value1, key2=value2, ...)`` and ``input is Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes diff --git a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_vars.rst b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_vars.rst index f5ee1aaf..07e8832c 100644 --- a/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_vars.rst +++ b/tests/functional/baseline-use-html-blobs/collections/ns2/col/foo_vars.rst @@ -141,7 +141,7 @@ Parameters Configuration entries listed above for each entry type (Ansible variable, environment variable, and so on) have a low to high priority order. For example, a variable that is lower in the list will override a variable that is higher up. - The entry types are also ordered be precedence from low to high priority order. + The entry types are also ordered by precedence from low to high priority order. For example, an ansible.cfg entry (further up in the list) is overwritten by an Ansible variable (further down in the list). .. Attributes