diff options
author | Craig Scott <craig.scott@crascit.com> | 2022-11-05 06:16:24 (GMT) |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2022-11-07 13:05:55 (GMT) |
commit | 1046a61cfd3a586e650d28b74b3bc0ff0dee4d86 (patch) | |
tree | 3ebe4724d47a412422d30aacd68970b5c80e2838 /Help/command/continue.rst | |
parent | 7c52e9e9511ecbd3dad2d0de493ea7329a860c5f (diff) | |
download | CMake-1046a61cfd3a586e650d28b74b3bc0ff0dee4d86.zip CMake-1046a61cfd3a586e650d28b74b3bc0ff0dee4d86.tar.gz CMake-1046a61cfd3a586e650d28b74b3bc0ff0dee4d86.tar.bz2 |
Help: clean up and clarify block() and return()
Diffstat (limited to 'Help/command/continue.rst')
-rw-r--r-- | Help/command/continue.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Help/command/continue.rst b/Help/command/continue.rst index f62802e..e8012ee 100644 --- a/Help/command/continue.rst +++ b/Help/command/continue.rst @@ -9,8 +9,8 @@ Continue to the top of enclosing foreach or while loop. continue() -The ``continue`` command allows a cmake script to abort the rest of a block -in a :command:`foreach` or :command:`while` loop, and start at the top of -the next iteration. +The ``continue()`` command allows a cmake script to abort the rest of the +current iteration of a :command:`foreach` or :command:`while` loop, and start +at the top of the next iteration. See also the :command:`break` command. |