qualified: docs fix

db4
Bruno Deferrari 2008-04-12 19:09:46 -03:00
parent 7ef3109ff1
commit 2f4cec443c
1 changed files with 0 additions and 12 deletions

View File

@ -15,31 +15,19 @@ HELP: QUALIFIED-WITH:
HELP: FROM:
{ $syntax "FROM: vocab => words ... ;" }
<<<<<<< HEAD:extra/qualified/qualified-docs.factor
{ $description "Imports " { $snippet "words" } " from " { $snippet "vocab" } "." }
=======
{ $description "Imports the specified words from vocab." }
>>>>>>> 04e914c... qualified: fixing docs a bit.:extra/qualified/qualified-docs.factor
{ $examples { $code
"FROM: math.parser => bin> hex> ; ! imports only bin> and hex>" } } ;
HELP: EXCLUDE:
{ $syntax "EXCLUDE: vocab => words ... ;" }
<<<<<<< HEAD:extra/qualified/qualified-docs.factor
{ $description "Imports everything from " { $snippet "vocab" } " excluding " { $snippet "words" } "." }
=======
{ $description "Imports everything from vocab excluding the specified words" }
>>>>>>> 04e914c... qualified: fixing docs a bit.:extra/qualified/qualified-docs.factor
{ $examples { $code
"EXCLUDE: math.parser => bin> hex> ; ! imports everythin but bin> and hex>" } } ;
HELP: RENAME:
{ $syntax "RENAME: word vocab => newname " }
<<<<<<< HEAD:extra/qualified/qualified-docs.factor
{ $description "Imports " { $snippet "word" } " from " { $snippet "vocab" } ", but renamed to " { $snippet "newname" } "." }
=======
{ $description "Imports word from vocab, but renamed to newname." }
>>>>>>> 04e914c... qualified: fixing docs a bit.:extra/qualified/qualified-docs.factor
{ $examples { $code
"RENAME: + math => -"
"2 3 - ! => 5" } } ;