diff --git a/extra/disjoint-set/authors.txt b/extra/disjoint-sets/authors.txt similarity index 100% rename from extra/disjoint-set/authors.txt rename to extra/disjoint-sets/authors.txt diff --git a/extra/disjoint-set/disjoint-set.factor b/extra/disjoint-sets/disjoint-sets.factor similarity index 93% rename from extra/disjoint-set/disjoint-set.factor rename to extra/disjoint-sets/disjoint-sets.factor index 6f3b1e63e8..f56ee7ccfe 100644 --- a/extra/disjoint-set/disjoint-set.factor +++ b/extra/disjoint-sets/disjoint-sets.factor @@ -1,6 +1,8 @@ +! Copyright (C) 2008 Eric Mertens. +! See http://factorcode.org/license.txt for BSD license. USING: accessors arrays hints kernel locals math sequences ; -IN: disjoint-set +IN: disjoint-sets