]> gitweb.factorcode.org Git - factor.git/commitdiff
Fixing spacing in the sets docs
authorDaniel Ehrenberg <littledan@Macintosh-122.local>
Wed, 17 Mar 2010 01:30:17 +0000 (21:30 -0400)
committerDaniel Ehrenberg <littledan@Macintosh-122.local>
Wed, 17 Mar 2010 01:30:17 +0000 (21:30 -0400)
core/sets/sets-docs.factor

index 5cb0096d0ba5d75942ca198b0f187f7319855bbc..75df4069dc61252bbcd031ec0eb17f46709acaee 100644 (file)
@@ -15,9 +15,9 @@ ABOUT: "sets"
 
 ARTICLE: "set-operations" "Operations on sets"
 "To test if an object is a member of a set:"
-{ $subsection member? }
+{ $subsections member? }
 "All sets can be represented as a sequence, without duplicates, of their members:"
-{ $subsection members }
+{ $subsections members }
 "Sets can have members added or removed destructively:"
 { $subsections
     adjoin
@@ -36,9 +36,9 @@ ARTICLE: "set-operations" "Operations on sets"
     set=
 }
 "An optional generic word for creating sets of the same class as a given set:"
-{ $subsection set-like }
+{ $subsections set-like }
 "An optional generic word for creating a set with a fast lookup operation, if the set itself has a slow lookup operation:"
-{ $subsection fast-set }
+{ $subsections fast-set }
 "For set types that allow duplicates, like sequence sets, some additional words test for duplication:"
 { $subsections
     all-unique?