aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source/lang/continue.rst
diff options
context:
space:
mode:
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
-=======
+-------
::