summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorFelix Fontein <felix@fontein.de>2022-08-04 20:26:32 +0200
committerGitHub <noreply@github.com>2022-08-04 20:26:32 +0200
commit2218b63aefc558ff967a8597a1dc9c4c5f88e27c (patch)
treea1f8ba6d52b2ffd869572a0c1309549caf254030 /docs
parentRe-organize CI test groups for POSIX tests. (#77420) (diff)
downloadansible-2218b63aefc558ff967a8597a1dc9c4c5f88e27c.tar.xz
ansible-2218b63aefc558ff967a8597a1dc9c4c5f88e27c.zip
Fix typo: missing 'install'. (#78448)
Diffstat (limited to 'docs')
-rw-r--r--docs/docsite/rst/dev_guide/developing_collections_documenting.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/docsite/rst/dev_guide/developing_collections_documenting.rst b/docs/docsite/rst/dev_guide/developing_collections_documenting.rst
index 2b7e41a6aa..8f0c00d646 100644
--- a/docs/docsite/rst/dev_guide/developing_collections_documenting.rst
+++ b/docs/docsite/rst/dev_guide/developing_collections_documenting.rst
@@ -23,7 +23,7 @@ You can use `antsibull-docs <https://pypi.org/project/antsibull-docs>`_ to build
#. Create your collection and make sure you can use it with ansible-core by adding it to your :ref:`COLLECTIONS_PATHS`.
#. Create a directory ``dest`` and run ``antsibull-docs sphinx-init --use-current --dest-dir dest namespace.name``, where ``namespace.name`` is the name of your collection.
-#. Go into ``dest`` and run ``pip -r requirements.txt``. You might want to create a venv and activate it first to avoid installing this globally.
+#. Go into ``dest`` and run ``pip install -r requirements.txt``. You might want to create a venv and activate it first to avoid installing this globally.
#. Then run ``./build.sh``.
#. Open ``build/html/index.html`` in a browser of your choice.