ui.gadgets: fix help-lint warnings.

db4
John Benediktsson 2015-08-16 10:46:28 -07:00
parent 15b0753457
commit 6b440e5e81
2 changed files with 3 additions and 5 deletions

View File

@ -6,7 +6,7 @@ HELP: labeled-gadget
{ $class-description "A labeled gadget can be created by calling " { $link <labeled-gadget> } "." } ;
HELP: <labeled-gadget>
{ $values { "gadget" gadget } { "title" string } { "newgadget" "a new " { $link <labeled-gadget> } } }
{ $values { "gadget" gadget } { "title" string } { "labeled" "a new " { $link <labeled-gadget> } } }
{ $description "Creates a new " { $link labeled-gadget } " display " { $snippet "gadget" } " with " { $snippet "title" } " on top." } ;
ARTICLE: "ui.gadgets.labeled" "Labeled gadgets"

View File

@ -1,9 +1,7 @@
USING: help.markup help.syntax ui.gadgets ui.gadgets.buttons
ui.gadgets.labels ui.pens kernel models classes ;
USING: help.markup help.syntax kernel ui.gadgets
ui.gadgets.buttons ;
IN: ui.gadgets.toolbar
HELP: <toolbar>
{ $values { "target" object } { "toolbar" gadget } }
{ $description "Creates a row of " { $link <command-button> } " gadgets invoking commands on " { $snippet "target" } ". The commands are taken from the " { $snippet "\"toolbar\"" } " command group of each class in " { $snippet "classes" } "." } ;
ABOUT: "ui.gadgets.toolbar"