aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source/lang/continue.rst
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@mit.edu>2010-11-29 01:49:26 -0500
committerMarti Bolivar <mbolivar@mit.edu>2010-11-29 01:49:26 -0500
commit078edc158da7906ba72e7e6528e1a811e07270e7 (patch)
tree1bc7b2e8137fb5ebfc7b59d59294d7adb9e95468 /docs/source/lang/continue.rst
parent5e587be27a7c3bd854b686952a5c9637a2432ff0 (diff)
downloadlibrambutan-078edc158da7906ba72e7e6528e1a811e07270e7.tar.gz
librambutan-078edc158da7906ba72e7e6528e1a811e07270e7.zip
Finished converting the Arduino docs
Diffstat (limited to 'docs/source/lang/continue.rst')
-rw-r--r--docs/source/lang/continue.rst8
1 files changed, 3 insertions, 5 deletions
diff --git a/docs/source/lang/continue.rst b/docs/source/lang/continue.rst
index 21b3984..13d1815 100644
--- a/docs/source/lang/continue.rst
+++ b/docs/source/lang/continue.rst
@@ -2,9 +2,8 @@
.. _lang-continue:
-==========
- continue
-==========
+``continue``
+============
The ``continue`` keyword skips the rest of the current iteration of a
:ref:`while <lang-while>`\ , :ref:`for <lang-for>`\ , or
@@ -12,9 +11,8 @@ The ``continue`` keyword skips the rest of the current iteration of a
conditional expression of the loop, and proceeding with any subsequent
iterations.
-
Example
-=======
+-------
::