]> gitweb.factorcode.org Git - factor.git/commitdiff
Fix typo in hash-set documentation
authorBenjamin Pollack <benjamin@bitquabit.com>
Wed, 11 Feb 2015 01:30:40 +0000 (20:30 -0500)
committerJohn Benediktsson <mrjbq7@gmail.com>
Thu, 12 Feb 2015 01:38:44 +0000 (17:38 -0800)
core/hash-sets/hash-sets-docs.factor

index 7b8df4d23fff11fc01f5d682583f2c56426e39e9..a5d24f034f464e473141cebdf4aaf528ff3d3ae7 100644 (file)
@@ -1,4 +1,4 @@
-USING: help.markup help.syntax math sequences ;
+USING: help.markup help.syntax math sequences sets ;
 IN: hash-sets
 
 ARTICLE: "hash-sets" "Hash sets"
@@ -11,7 +11,7 @@ ARTICLE: "hash-sets" "Hash sets"
 ABOUT: "hash-sets"
 
 HELP: hash-set
-{ $class-description "The class of hashtable-like sets. These implement the " { $link "sets" } "." } ;
+{ $class-description "The class of hashtable-like sets. These implement the " { $link set } " mixin." } ;
 
 HELP: <hash-set>
 { $values { "capacity" number } { "hash-set" hash-set } }