diff --git a/basis/ui/ui-docs.factor b/basis/ui/ui-docs.factor index 64eb5db07e..5e6d3150c7 100644 --- a/basis/ui/ui-docs.factor +++ b/basis/ui/ui-docs.factor @@ -47,7 +47,7 @@ HELP: find-window HELP: register-window { $values { "world" world } { "handle" "a backend-specific handle" } } { $description "Adds a window to the global " { $link windows } " variable." } -{ $notes "This word should only be called by the UI backend. User code can open new windows with " { $link open-window } "." } ; +{ $notes "This word should only be called by the UI backend. User code can open new windows with " { $link open-window } "." } ; HELP: unregister-window { $values { "handle" "a backend-specific handle" } } @@ -75,7 +75,7 @@ HELP: raise-window HELP: with-ui { $values { "quot" { $quotation "( -- )" } } } { $description "Calls the quotation, starting the UI first if necessary. If the UI is started, this word does not return." } -{ $notes "This word should be used in the " { $link POSTPONE: MAIN: } " word of an application that uses the UI in order for the vocabulary to work when run from either the UI listener (" { $snippet "\"my-app\" run" } " and the command line (" { $snippet "./factor -run=my-app" } ")." } +{ $notes "This word should be used in the " { $link POSTPONE: MAIN: } " word of an application that uses the UI in order for the vocabulary to work when run from either the UI listener (" { $snippet "\"my-app\" run" } ") and the command line (" { $snippet "./factor -run=my-app" } ")." } { $examples "The " { $vocab-link "hello-ui" } " vocabulary implements a simple UI application which uses this word." } ; HELP: beep @@ -255,7 +255,7 @@ $nl } "Gadgets implement a generic word to inform their parents of their preferred size:" { $subsections pref-dim* } -"To get a gadget's preferred size, do not call the above word, instead use " { $link pref-dim } ", which caches the result." ; +"To get a gadget's preferred size, do not call the above word, instead use " { $link pref-dim } ", which caches the result." ; ARTICLE: "ui-null-layout" "Manual layouts" "When automatic layout is not appropriate, gadgets can be added to a parent with no layout policy, and then positioned and sized manually by setting the " { $snippet "loc" } " field." ;