Improve explanation of "while" (#3265)

It was confusing to read that it executes the code until the condition is false. What if the condition is false from the begining?
This commit is contained in:
adynis 2023-10-25 17:51:24 +03:00 committed by GitHub
parent 022d32c63d
commit 588338d973
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -568,8 +568,8 @@ Configuration variables:
``while`` Action
----------------
This action is similar to the :ref:`if <if_action>` Action. The ``while`` action executes
a block until a given condition evaluates to false.
This action is similar to the :ref:`if <if_action>` Action. The ``while`` action loops
through a block as long as the given condition is true.
.. code-block:: yaml