]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
docs-v4: continue integrity check - added more details about breaking out of a `forea...
authornolade <nola.aunger@inkbridge.io>
Tue, 31 Mar 2026 17:52:45 +0000 (13:52 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Wed, 1 Apr 2026 15:33:18 +0000 (11:33 -0400)
doc/antora/modules/reference/pages/unlang/continue.adoc

index 7c4ed2d5ad2355c7c1f86fa9c3c0409500b3c2a1..96f1a2b0ec5530ee2c1699eec7bbbcc072849219 100644 (file)
@@ -7,12 +7,13 @@ continue
 ----
 
 The `continue` statement is used in a
-xref:unlang/foreach.adoc[foreach] loop, and will cause the interpret
+xref:unlang/foreach.adoc[foreach] loop, and will cause the interpreter
 to skip execution of the rest of the statements in current loop
-iteration, and start the next iteration of the loop.  The `continue`
+iteration, and start the next iteration of the loop. The `continue`
 statement cannot be used in any other location.
 
-In this example, a `continue` is used to exit a
+In this example, a `continue` is used with a
+xref:unlang/break.adoc[break] to exit a
 xref:unlang/foreach.adoc[foreach] loop when a particular condition
 matches.
 
@@ -31,6 +32,5 @@ foreach i (%range(10)) {
 }
 ----
 
-
 // Copyright (C) 2025 Network RADIUS SAS.  Licenced under CC-by-NC 4.0.
 // This documentation was developed by Network RADIUS SAS.