From ad5d9843d651dd35287e2ad1ed0f57439e864e7e Mon Sep 17 00:00:00 2001 From: KIDANI Akito Date: Sun, 9 Oct 2022 23:21:43 +0900 Subject: [PATCH] docs: fix typos (#79082) --- .../collection_contributors/collection_integration_add.rst | 6 +++--- .../collection_release_with_branches.rst | 2 +- docs/docsite/rst/community/contributor_path.rst | 4 ++-- docs/docsite/rst/dev_guide/developing_python_3.rst | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/docsite/rst/community/collection_contributors/collection_integration_add.rst b/docs/docsite/rst/community/collection_contributors/collection_integration_add.rst index b73c0326608..ad30b02773a 100644 --- a/docs/docsite/rst/community/collection_contributors/collection_integration_add.rst +++ b/docs/docsite/rst/community/collection_contributors/collection_integration_add.rst @@ -36,7 +36,7 @@ We should basically do the following: 1. Clone the collection to the ``~/ansible_collections/community.abstract`` directory on your local machine. -2. From the ``~/ansble_collections/community.abstract`` directory, create directories for the ``setup`` target: +2. From the ``~/ansible_collections/community.abstract`` directory, create directories for the ``setup`` target: .. code-block:: bash @@ -63,7 +63,7 @@ This is a very simplified example. 4. Add the target for the module you are testing. -Let's say the module is called ``abstact_service_info``. Create the following directory structure in the target: +Let's say the module is called ``abstract_service_info``. Create the following directory structure in the target: .. code-block:: bash @@ -90,7 +90,7 @@ Add the following to ``tests/integration/targets/abstract_service_info/tasks/mai .. code-block:: yaml - name: Fetch info from abstract service - anstract_service_info: + abstract_service_info: host: 127.0.0.1 # We assume the service accepts local connection by default port: 1234 # We assume that the service is listening this port by default register: result # This variable will contain the returned JSON including the server version diff --git a/docs/docsite/rst/community/collection_contributors/collection_release_with_branches.rst b/docs/docsite/rst/community/collection_contributors/collection_release_with_branches.rst index 9cc7054fb94..d48cb24fee9 100644 --- a/docs/docsite/rst/community/collection_contributors/collection_release_with_branches.rst +++ b/docs/docsite/rst/community/collection_contributors/collection_release_with_branches.rst @@ -213,7 +213,7 @@ Publishing the collection Releasing patch versions ------------------------- -The new version is assumed to be ``X.Y.Z``, and the previous patch version is assumed to be ``X.Y.z`` with ``z < Z``. ``z`` is frequently``0`` snce patch releases are uncommon. +The new version is assumed to be ``X.Y.Z``, and the previous patch version is assumed to be ``X.Y.z`` with ``z < Z``. ``z`` is frequently``0`` since patch releases are uncommon. Releasing when more minor versions are expected ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/docs/docsite/rst/community/contributor_path.rst b/docs/docsite/rst/community/contributor_path.rst index aced42b31d8..675adabaac1 100644 --- a/docs/docsite/rst/community/contributor_path.rst +++ b/docs/docsite/rst/community/contributor_path.rst @@ -48,7 +48,7 @@ You should understand at least *basics* of the following tools: You can learn these tools more in depth when working on your first contributions. -Each Ansible project has its own set of contributor guidelines. Familarize yourself with these as you prepare your first contributions. +Each Ansible project has its own set of contributor guidelines. Familiarize yourself with these as you prepare your first contributions. * :ref:`Ansible Core development `. * :ref:`Ansible collection development ` and the collection-level contributor guidelines in the collection repository. @@ -72,7 +72,7 @@ See :ref:`communication` for ways to communicate and engage with the Ansible com Teach others ============ -Share your experience with other contributors through `improving documentation `, answering question from other contributors and users on `Matrix/Libera.Chat IRC `, giving advice in issues and pull requests, and discussing the `Community Topics `_. +Share your experience with other contributors through `improving documentation `, answering question from other contributors and users on `Matrix/Libera.Chat IRC `, giving advice in issues and pull requests, and discussing the `Community Topics `_. Become a collection maintainer =============================== diff --git a/docs/docsite/rst/dev_guide/developing_python_3.rst b/docs/docsite/rst/dev_guide/developing_python_3.rst index a58ee1ae35e..74385c43f9d 100644 --- a/docs/docsite/rst/dev_guide/developing_python_3.rst +++ b/docs/docsite/rst/dev_guide/developing_python_3.rst @@ -89,7 +89,7 @@ and while Python 2 is not a concern anymore we will continue to use them as they dealing with unicode problematic. While we will not be using it most of it anymore, the documentation below is still useful for those developing modules -that still need to support both Python 2 and 3 simultaneouslly. +that still need to support both Python 2 and 3 simultaneously. Unicode Sandwich common borders: places to convert bytes to text in controller code -----------------------------------------------------------------------------------