aboutsummaryrefslogtreecommitdiff
path: root/chapters/control_flow.adoc
diff options
context:
space:
mode:
authorEric Kunze <eric.kunze@arm.com>2024-05-10 15:01:52 -0700
committerEric Kunze <eric.kunze@arm.com>2024-05-23 17:27:44 -0700
commit9b6faf3b2bdc4a2598234dc9408f080629c7e4d4 (patch)
tree4a8902bae00581194afa10d527d6bd32c338e30c /chapters/control_flow.adoc
parentd24fa5c9b83d8ed22ae93f3f55f038b8c0b5c29b (diff)
downloadspecification-main.tar.gz
Clarifications and cleanupHEADmain
Miscellaneous cleanup and clarifications across the specification. No functional changes intended in this commit. Signed-off-by: Eric Kunze <eric.kunze@arm.com> Change-Id: Iaa89e2f7828ae55abe3fbb19afafb6161a8a43fc
Diffstat (limited to 'chapters/control_flow.adoc')
-rw-r--r--chapters/control_flow.adoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chapters/control_flow.adoc b/chapters/control_flow.adoc
index 2da2424..651d2f2 100644
--- a/chapters/control_flow.adoc
+++ b/chapters/control_flow.adoc
@@ -24,7 +24,7 @@ include::{pseudocode}/operators/COND_IF.tosac[lines=10..-1]
==== WHILE_LOOP
-Generates and evaluates a Bool condition and either executes a loop body or exits the loop. This action is performed repeatedly after updating and re-evaluating the Boolean condition every iteration. This implements the semantic foreach or while iterative loop structure.
+Generates and evaluates a Boolean condition and either executes a loop body or exits the loop. This action is performed repeatedly after updating and re-evaluating the Boolean condition every iteration. This implements the semantic foreach or while iterative loop structure.
include::{generated}/operators/WHILE_LOOP.adoc[]