diff options
Diffstat (limited to 'source/lang/continue.rst')
-rw-r--r-- | source/lang/continue.rst | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/source/lang/continue.rst b/source/lang/continue.rst index 21b3984..13d1815 100644 --- a/source/lang/continue.rst +++ b/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 -======= +------- :: |