]> gitweb.factorcode.org Git - factor.git/commitdiff
disjoint-sets: fix typo in description of assoc>disjoint-set word
authorKeita Haga <keitahaga@mail.com>
Fri, 21 Jan 2011 07:13:38 +0000 (16:13 +0900)
committerKeita Haga <keitahaga@mail.com>
Fri, 21 Jan 2011 07:15:34 +0000 (16:15 +0900)
basis/disjoint-sets/disjoint-sets-docs.factor

index 73de932a301fb8734c9d7400909ba31e572392b2..589f99f6dc6ae8180667344170b65cf57788d58b 100644 (file)
@@ -23,7 +23,7 @@ HELP: equate
 
 HELP: assoc>disjoint-set
 { $values { "assoc" assoc } { "disjoint-set" disjoint-set } }
-{ $description "Given an assoc representation of a graph where the keys are vertices and key/value pairs are edges, creates a disjoint set whose elements are the keys of assoc, and two keys are equvalent if they belong to the same connected component of the graph." }
+{ $description "Given an assoc representation of a graph where the keys are vertices and key/value pairs are edges, creates a disjoint set whose elements are the keys of assoc, and two keys are equivalent if they belong to the same connected component of the graph." }
 { $examples
     { $example
         "USING: disjoint-sets kernel prettyprint ;"