diff --git a/docs/docsite/rst/community/communication.rst b/docs/docsite/rst/community/communication.rst index 28aa3e32152..c58b40e6c67 100644 --- a/docs/docsite/rst/community/communication.rst +++ b/docs/docsite/rst/community/communication.rst @@ -111,5 +111,5 @@ If you have any questions or content you would like to share, please reach out t Read past issues `here `_. -`Subscribe `_ to receive it. +`Subscribe `_ to receive it. diff --git a/docs/docsite/rst/dev_guide/developing_modules_checklist.rst b/docs/docsite/rst/dev_guide/developing_modules_checklist.rst index ddba03fc208..6e70deb6d74 100644 --- a/docs/docsite/rst/dev_guide/developing_modules_checklist.rst +++ b/docs/docsite/rst/dev_guide/developing_modules_checklist.rst @@ -31,7 +31,7 @@ To contribute a module to most Ansible collections, you must: Additional requirements may apply for certain collections. Review the individual collection repositories for more information. -Please make sure your module meets these requirements before you submit your PR/proposal. If you have questions, reach out via ``#ansible-devel``, Ansible's IRC chat channel on `irc.libera.chat `_ or the `Ansible development mailing list `_. +Please make sure your module meets these requirements before you submit your PR/proposal. If you have questions, reach out via ``#ansible-devel``, Ansible's IRC chat channel on `irc.libera.chat `_ or the `Ansible development mailing list `_. Contributing to Ansible: subjective requirements ================================================ diff --git a/docs/docsite/rst/galaxy/user_guide.rst b/docs/docsite/rst/galaxy/user_guide.rst index 4e084d641de..2ac085cddaa 100644 --- a/docs/docsite/rst/galaxy/user_guide.rst +++ b/docs/docsite/rst/galaxy/user_guide.rst @@ -348,7 +348,7 @@ Below are the contents of the :file:`webserver.yml` file: - src: https://github.com/bennojoy/nginx # from Bitbucket - - src: git+http://bitbucket.org/willthames/git-ansible-galaxy + - src: git+https://bitbucket.org/willthames/git-ansible-galaxy version: v1.4 The following shows the contents of the :file:`requirements.yml` file that now includes the :file:`webserver.yml` file: diff --git a/docs/docsite/rst/reference_appendices/test_strategies.rst b/docs/docsite/rst/reference_appendices/test_strategies.rst index 1e3bdd9de90..767fa76a186 100644 --- a/docs/docsite/rst/reference_appendices/test_strategies.rst +++ b/docs/docsite/rst/reference_appendices/test_strategies.rst @@ -73,7 +73,7 @@ Here's an example of using the URI module to make sure a web service returns:: tasks: - - action: uri url=http://www.example.com return_content=yes + - action: uri url=https://www.example.com return_content=yes register: webpage - fail: diff --git a/docs/docsite/rst/user_guide/playbooks_filters.rst b/docs/docsite/rst/user_guide/playbooks_filters.rst index 28a7accb49c..0d6528b8ed6 100644 --- a/docs/docsite/rst/user_guide/playbooks_filters.rst +++ b/docs/docsite/rst/user_guide/playbooks_filters.rst @@ -688,7 +688,7 @@ To select a single element or a data subset from a complex data structure in JSO This filter has migrated to the `community.general `_ collection. Follow the installation instructions to install that collection. -.. note:: You must manually install the **jmespath** dependency on the Ansible controller before using this filter. This filter is built upon **jmespath**, and you can use the same syntax. For examples, see `jmespath examples `_. +.. note:: You must manually install the **jmespath** dependency on the Ansible controller before using this filter. This filter is built upon **jmespath**, and you can use the same syntax. For examples, see `jmespath examples `_. Consider this data structure:: diff --git a/docs/docsite/rst/user_guide/playbooks_tests.rst b/docs/docsite/rst/user_guide/playbooks_tests.rst index bdd52fa9d23..e8ad4a71e19 100644 --- a/docs/docsite/rst/user_guide/playbooks_tests.rst +++ b/docs/docsite/rst/user_guide/playbooks_tests.rst @@ -40,12 +40,12 @@ Testing strings To match strings against a substring or a regular expression, use the ``match``, ``search`` or ``regex`` tests:: vars: - url: "http://example.com/users/foo/resources/bar" + url: "https://example.com/users/foo/resources/bar" tasks: - debug: msg: "matched pattern 1" - when: url is match("http://example.com/users/.*/resources/") + when: url is match("https://example.com/users/.*/resources/") - debug: msg: "matched pattern 2"