summaryrefslogtreecommitdiff
path: root/documentation
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2007-02-20 18:39:45 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2007-02-20 18:39:45 +0000
commit101c2433ffb7e5a9ee69e7403786617d8fbb8baf (patch)
tree859f1d69b7490ccbec3b204e8493fb8fa09188da /documentation
parent8ea59b412e4af50813545a836ed1c11ac00f541c (diff)
">" is "&gt;", not "&lt;" (which is "<")... :)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5700 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'documentation')
-rw-r--r--documentation/advanced.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/advanced.html b/documentation/advanced.html
index 51a7482fe..f7623435b 100644
--- a/documentation/advanced.html
+++ b/documentation/advanced.html
@@ -21,7 +21,7 @@ that will help you to get the most out of FLTK.</P>
int main() {
Fl::lock();
/* run thread */
- while (Fl::wait() &lt; 0) {
+ while (Fl::wait() &gt; 0) {
if (Fl::thread_message()) {
/* process your data */
}