syntax: slightly to fix examples of QUALIFIED: and QUALIFIED-WITH:

db4
Keita Haga 2010-12-19 01:07:34 +09:00
parent 70a2cfad37
commit 34a9b93458
1 changed files with 3 additions and 2 deletions

View File

@ -533,13 +533,14 @@ HELP: QUALIFIED:
{ $examples { $example
"USING: prettyprint ;"
"QUALIFIED: math"
"1 2 math:+ ." "3"
"1 2 math:+ ."
"3"
} } ;
HELP: QUALIFIED-WITH:
{ $syntax "QUALIFIED-WITH: vocab word-prefix" }
{ $description "Like " { $link POSTPONE: QUALIFIED: } " but uses " { $snippet "word-prefix" } " as prefix." }
{ $examples { $code
{ $examples { $example
"USING: prettyprint ;"
"QUALIFIED-WITH: math m"
"1 2 m:+ ."