diff --git a/TODO.FACTOR.txt b/TODO.FACTOR.txt index e045ba4475..f3b57a4edf 100644 --- a/TODO.FACTOR.txt +++ b/TODO.FACTOR.txt @@ -42,6 +42,7 @@ + ui/help: +- clearing pane with ^L leaves scrollbar a pixel off - new leaner help viewer - new inspector style: - clicking objects sends them to the listener @@ -69,7 +70,6 @@ - cocoa: - horizontal scrolling - window zooming doesn't work - - implement handlers for open, quit events, and whatever else - polish OS X menu bar code - when scrolling wheel, or moving mouse out of window, rollover is not updated diff --git a/library/tools/describe.facts b/library/tools/describe.facts index 3c83dadff9..f7cac069ba 100644 --- a/library/tools/describe.facts +++ b/library/tools/describe.facts @@ -28,13 +28,13 @@ HELP: word-outliner "( seq quot -- )" HELP: usage. "( word -- )" { $values { "word" "a word" } } { $description "Prints an outliner listing all callers of a word. This may include the word itself, if it is recursive." } -{ $examples { $code "\ reverse usage." } } +{ $examples { $code "\\ reverse usage." } } { $see-also usage usages } ; HELP: uses. "( word -- )" { $values { "word" "a word" } } { $description "Prints an outliner listing all words called by a word. This may include the word itself, if it is recursive." } -{ $examples { $code "\ + uses." } } +{ $examples { $code "\\ + uses." } } { $see-also uses } ; HELP: stack. "( seq -- )"