summaryrefslogtreecommitdiffstats
path: root/Help/command/continue.rst
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2018-10-24 14:39:28 (GMT)
committerKitware Robot <kwrobot@kitware.com>2018-10-24 14:39:39 (GMT)
commit008cb6aa991a515cd31a9b7e6a5837555ff2d43a (patch)
tree1c1b234a3d67c6426efcacdae816172ccb388801 /Help/command/continue.rst
parent2296ede5ad67ace711f3f9c2dff33ea1f9b9aeb4 (diff)
parentc2efb3efcd083523a73a2a9721b7101fbfc0fe0f (diff)
downloadCMake-008cb6aa991a515cd31a9b7e6a5837555ff2d43a.zip
CMake-008cb6aa991a515cd31a9b7e6a5837555ff2d43a.tar.gz
CMake-008cb6aa991a515cd31a9b7e6a5837555ff2d43a.tar.bz2
Merge topic 'scripting-commands'
c2efb3efcd Help: Revise docs on Scripting Commands Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2504
Diffstat (limited to 'Help/command/continue.rst')
-rw-r--r--Help/command/continue.rst6
1 files changed, 4 insertions, 2 deletions
diff --git a/Help/command/continue.rst b/Help/command/continue.rst
index 1c7d673..31c7089 100644
--- a/Help/command/continue.rst
+++ b/Help/command/continue.rst
@@ -3,10 +3,12 @@ continue
Continue to the top of enclosing foreach or while loop.
-::
+.. code-block:: cmake
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. See also the :command:`break` command.
+the next iteration.
+
+See also the :command:`break` command.