Skip to content

Commit 3539b41

Browse files
committed
Fixed typo in while() ref page, resolves Issue 1088
1 parent 2ffe883 commit 3539b41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/api_en/include/while.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ while (i < 80) {
2222
<description><![CDATA[
2323
Controls a sequence of repetitions. The <b>while</b> structure executes a series of statements continuously while the <b>expression</b> is <b>true</b>. The expression must be updated during the repetitions or the program will never "break out" of <b>while</b>.
2424
<br/> <br/>
25-
This function can be dangerous because the code inside the <b>while</b> loop will not finish until the expression inside <b>while</b> becomes true. It will lock out all other code from running (e.g., mouse and keyboard events will not be updated). Be careful &mdash; if used incorrectly, this can lock up your code (and sometimes even the Processing environment itself).
25+
This function can be dangerous because the code inside the <b>while</b> loop will not finish until the expression inside <b>while</b> becomes false. It will lock out all other code from running (e.g., mouse and keyboard events will not be updated). Be careful &mdash; if used incorrectly, this can lock up your code (and sometimes even the Processing environment itself).
2626
]]></description>
2727

2828
<syntax>

0 commit comments

Comments
 (0)