Merge branch 'master' of git://factorcode.org/git/factor

db4
Slava Pestov 2008-11-11 23:24:08 -06:00
commit c581311e03
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ HELP: linked-assoc
{ $class-description "The class of linked assocs. Linked assoc are implemented by combining an assoc with a dlist. The assoc is used for lookup and retrieval of single values, while the dlist is used for getting lists of keys/values, which will be in insertion order." } ;
HELP: <linked-assoc>
{ $values { "exemplar" "an exemplar assoc" } }
{ $values { "exemplar" "an exemplar assoc" } { "assoc" linked-assoc } }
{ $description "Creates an empty linked assoc backed by a new instance of the same type as the exemplar." } ;
HELP: <linked-hash>

View File

@ -17,7 +17,7 @@ HELP: advised?
{ $description "Determines whether or not the given word has any advice on it." } ;
HELP: ad-do-it
{ $values { "input" "an object" } { "output" "an object" } }
{ $values { "input" "an object" } { "result" "an object" } }
{ $description "Calls either the next applicable around advice or the main body, returning back to the point it was called from when finished. This word should only be called from inside advice." }
{ $see-also coyield } ;