From 5227a639e823c539c771a0a1013c06c88a143dc0 Mon Sep 17 00:00:00 2001 From: Mingjia Liu Date: Thu, 4 Jun 2026 18:01:29 +0000 Subject: [PATCH] Update docs/control-flow/leave-stmt.md --- docs/control-flow/leave-stmt.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/control-flow/leave-stmt.md b/docs/control-flow/leave-stmt.md index a705c48b239a3..eae930cef7a70 100644 --- a/docs/control-flow/leave-stmt.md +++ b/docs/control-flow/leave-stmt.md @@ -19,14 +19,14 @@ license: | limitations under the License. --- -Terminates the execution of an iteration of a looping statement and continues with the next iteration if the looping condition is met. +Terminates the execution of an iteration of a looping statement and exits the loop. This statement may only be used within a [compound statement](compound-stmt.html). ## Syntax ``` -ITERATE label +LEAVE label ``` ## Parameters