factor/library/tools/definitions.facts

22 lines
755 B
Plaintext
Raw Normal View History

2006-08-02 15:17:13 -04:00
IN: definitions
USING: help ;
HELP: reload "( word -- )"
{ $values { "word" "a word" } }
{ $description "Reloads the source file containing the most recent redefinition of the word." }
{ $errors "Throws an error if the word was not defined in a file, or if an error occurs while running the file." } ;
HELP: in. "( word -- )"
{ $values { "word" "a word" } }
{ $description "Prettyprints a " { $snippet "IN:" } " declaration for the word." }
$prettyprinting-note ;
HELP: (synopsis) "( defspec -- )"
{ $values { "defspec" "a definition specifier" } }
{ $contract "Prettyprints the prologue of a definition." }
$prettyprinting-note ;
HELP: comment. "( string -- )"
{ $description "Prettyprints some text with the comment style." }
$prettyprinting-note ;