summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGreg Ercolano <erco@seriss.com>2023-11-20 13:36:55 -0800
committerGreg Ercolano <erco@seriss.com>2023-11-20 13:36:55 -0800
commit11e6fb59116c1a699d973ed88aaf54f86b392b32 (patch)
treeb90a010606696c9ea6383f2606b58a871e4efbcf /src
parent7c95aa7c79281a4c074421a414dbc0d178b49dce (diff)
Fl::check() docs fix: example indented
Diffstat (limited to 'src')
-rw-r--r--src/Fl.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Fl.cxx b/src/Fl.cxx
index 7bb710480..105bc018b 100644
--- a/src/Fl.cxx
+++ b/src/Fl.cxx
@@ -634,9 +634,9 @@ int Fl::wait() {
\code
while (!calculation_done()) {
- calculate();
- Fl::check();
- if (user_hit_abort_button()) break;
+ calculate();
+ Fl::check();
+ if (user_hit_abort_button()) break;
}
\endcode