aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src/break.txt
diff options
context:
space:
mode:
authorGravatar Mark Griffiths <mark@thebespokepixel.com>2014-08-19 13:41:23 +0100
committerGravatar Mark Griffiths <mark@thebespokepixel.com>2014-09-03 14:43:26 +0100
commit137abd0cfaa8959224f88a4ebe9584a51468cc88 (patch)
treec396f760a1e309b5a837359e65c57c4555534d49 /doc_src/break.txt
parentd7308fecbe573aad91fc6f1377c1ed2df735f6fd (diff)
Make line length, wrapping and spacing consistent
Diffstat (limited to 'doc_src/break.txt')
-rw-r--r--doc_src/break.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc_src/break.txt b/doc_src/break.txt
index 2056b054..32672c09 100644
--- a/doc_src/break.txt
+++ b/doc_src/break.txt
@@ -5,13 +5,13 @@
LOOP_CONSTRUCT; [COMMANDS...] break; [COMMANDS...] end
\endfish
-
\subsection break-description Description
`break` halts a currently running loop, such as a <a href="#for">for</a> loop or a <a href="#while">while</a> loop. It is usually added inside of a conditional block such as an <a href="#if">if</a> statement or a <a href="#switch">switch</a> statement.
There are no parameters for `break`.
+
\subsection break-example Example
The following code searches all .c files for "smurf", and halts at the first occurrence.