From d41c8f50056b293eca9957dcfc9632dfbc83cfc2 Mon Sep 17 00:00:00 2001 From: Pavel Moukhataev Date: Tue, 29 Mar 2022 19:40:26 +0300 Subject: [PATCH] Fix choose link (#22186) --- source/_docs/scripts.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_docs/scripts.markdown b/source/_docs/scripts.markdown index cf468a3a0a1..0b50140caee 100644 --- a/source/_docs/scripts.markdown +++ b/source/_docs/scripts.markdown @@ -130,7 +130,7 @@ While executing a script you can add a condition in the main sequence to stop fu
-The `condition` action only stops executing the current sequence block. When it is used inside a [repeat](#repeat-a-group-of-actions) action, only the current iteration of the `repeat` loop will stop. When it is used inside a [choose](#test-a-condition) action, only the actions within that `choose` will stop. +The `condition` action only stops executing the current sequence block. When it is used inside a [repeat](#repeat-a-group-of-actions) action, only the current iteration of the `repeat` loop will stop. When it is used inside a [choose](#choose-a-group-of-actions) action, only the actions within that `choose` will stop.