factor/basis/summary/summary-docs.factor

14 lines
535 B
Factor
Raw Normal View History

2008-07-02 01:20:01 -04:00
IN: summary
USING: kernel strings help.markup help.syntax ;
2008-09-24 22:19:27 -04:00
ARTICLE: "summary" "Converting objects to summary strings"
2008-07-02 01:20:01 -04:00
"A word for getting very brief descriptions of words and general objects:"
{ $subsection summary } ;
HELP: summary
{ $values { "object" object } { "string" string } }
2008-09-24 22:19:27 -04:00
{ $contract "Outputs a brief description of the object." }
{ $notes "New methods can be defined by user code. Most often, this is used with error classes so that " { $link "debugger" } " can print friendlier error messages." } ;
2008-07-02 01:20:01 -04:00
ABOUT: "summary"