CPP: Corrections to qhelp.

This commit is contained in:
Geoffrey White
2019-07-02 10:38:41 +01:00
parent 83b0906f67
commit 3337a859aa

View File

@@ -5,7 +5,7 @@
<overview>
<p>A <code>continue</code> statement only re-runs the loop if the loop-condition is true. Therefore using <code>continue</code> in a loop with a constant false condition will never cause the loop body to be re-run, which is is misleading.
<p>A <code>continue</code> statement only re-runs the loop if the loop condition is true. Therefore using <code>continue</code> in a loop with a constant false condition will never cause the loop body to be re-run, which is misleading.
</p>
</overview>
@@ -18,7 +18,7 @@
<references>
<li>
Tutorialspoint - C Programming Language: <a href="https://www.tutorialspoint.com/cprogramming/c_continue_statement.htm">Continue Statement in C</a>
Tutorialspoint - C Programming Language: <a href="https://www.tutorialspoint.com/cprogramming/c_continue_statement.htm">Continue Statement in C</a>.
</li>
</references>
</qhelp>