From b7a5fd6be966e4d40f1db6fc66b1bd9541100789 Mon Sep 17 00:00:00 2001 From: nkoechling Date: Thu, 11 Nov 2021 20:17:08 +0100 Subject: [PATCH] Fixed typo in keyword_desc.yml (#76280) The description of 'max_fail_percentage' had a typo. --- lib/ansible/keyword_desc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/keyword_desc.yml b/lib/ansible/keyword_desc.yml index f0e076c5bc5..1e8d844a3d4 100644 --- a/lib/ansible/keyword_desc.yml +++ b/lib/ansible/keyword_desc.yml @@ -41,7 +41,7 @@ ignore_errors: Boolean that allows you to ignore task failures and continue with ignore_unreachable: Boolean that allows you to ignore task failures due to an unreachable host and continue with the play. This does not affect other task errors (see :term:`ignore_errors`) but is useful for groups of volatile/ephemeral hosts. loop: "Takes a list for the task to iterate over, saving each list element into the ``item`` variable (configurable via loop_control)" loop_control: Several keys here allow you to modify/set loop behaviour in a task. See :ref:`loop_control`. -max_fail_percentage: can be used to abort the run after a given percentage of hosts in the current batch has failed. This only wokrs on linear or linear derived strategies. +max_fail_percentage: can be used to abort the run after a given percentage of hosts in the current batch has failed. This only works on linear or linear derived strategies. module_defaults: Specifies default parameter values for modules. name: "Identifier. Can be used for documentation, or in tasks/handlers." no_log: Boolean that controls information disclosure.