summaryrefslogtreecommitdiff
path: root/docs/docsite/rst/playbook_guide/playbooks_tags.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/docsite/rst/playbook_guide/playbooks_tags.rst')
-rw-r--r--docs/docsite/rst/playbook_guide/playbooks_tags.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/docsite/rst/playbook_guide/playbooks_tags.rst b/docs/docsite/rst/playbook_guide/playbooks_tags.rst
index 4da0af02f4..bf01458f0d 100644
--- a/docs/docsite/rst/playbook_guide/playbooks_tags.rst
+++ b/docs/docsite/rst/playbook_guide/playbooks_tags.rst
@@ -257,7 +257,7 @@ If you want tag inheritance, you probably want to use imports. However, using bo
.. code-block:: yaml
- - name: Apply the db tag to the include and to all tasks in db.yaml
+ - name: Apply the db tag to the include and to all tasks in db.yml
include_tasks:
file: db.yml
# adds 'db' tag to tasks within db.yml
@@ -339,7 +339,7 @@ Once you have added tags to your tasks, includes, blocks, plays, roles, and impo
* ``--tags tagged`` - run only tasks with at least one tag
* ``--tags untagged`` - run only tasks with no tags
-For example, to run only tasks and blocks tagged ``configuration`` and ``packages`` in a very long playbook:
+For example, to run only tasks and blocks tagged either ``configuration`` or ``packages`` in a very long playbook:
.. code-block:: bash