]> gitweb.factorcode.org Git - factor.git/commitdiff
assocs: correct the class of output value in assoc-subset? word
authorKeita Haga <keitahaga@mail.com>
Mon, 17 Jan 2011 08:35:07 +0000 (17:35 +0900)
committerKeita Haga <keitahaga@mail.com>
Mon, 17 Jan 2011 08:35:07 +0000 (17:35 +0900)
core/assocs/assocs-docs.factor

index 6d66d77abeec2873453208658610e51f053ca14c..f428d11181bba2883d05f7099bdbe6711529b5fc 100644 (file)
@@ -303,7 +303,7 @@ HELP: assoc-refine
 { $description "Outputs the intersection of all the assocs of the assocs sequence " { $snippet "seq" } ", or " { $link f } " if " { $snippet "seq" } " is empty." } ;
 
 HELP: assoc-subset?
-{ $values { "assoc1" assoc } { "assoc2" assoc } { "?" "a new assoc" } }
+{ $values { "assoc1" assoc } { "assoc2" assoc } { "?" boolean } }
 { $description "Tests if " { $snippet "assoc2" } " contains all key/value pairs of " { $snippet "assoc1" } "." } ;
 
 HELP: assoc=