From 08bf39c5d145cd6fbbc573abed7c7e0d62803537 Mon Sep 17 00:00:00 2001 From: Keita Haga Date: Fri, 21 Jan 2011 16:13:38 +0900 Subject: [PATCH] disjoint-sets: fix typo in description of assoc>disjoint-set word --- basis/disjoint-sets/disjoint-sets-docs.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/disjoint-sets/disjoint-sets-docs.factor b/basis/disjoint-sets/disjoint-sets-docs.factor index 73de932a30..589f99f6dc 100644 --- a/basis/disjoint-sets/disjoint-sets-docs.factor +++ b/basis/disjoint-sets/disjoint-sets-docs.factor @@ -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 ;"