]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/bit-sets/bit-sets-docs.factor
factor: trim using lists
[factor.git] / basis / bit-sets / bit-sets-docs.factor
index a2792d32131f99acdaf45269d3ef657c4d58bf84..f84452fedde8e5a7f45ec8e5a22b4bd85683ec24 100644 (file)
@@ -1,17 +1,17 @@
-USING: help.markup help.syntax sequences math ;
+USING: help.markup help.syntax math sequences ;
 IN: bit-sets
 
 ARTICLE: "bit-sets" "Bit sets"
-"The " { $vocab-link "bit-sets" } " vocabulary implements bit-array-backed sets. Bitsets are efficient for implementing relatively dense sets whose members are in a contiguous range of integers starting from 0. One bit is required for each integer in this range in the underlying representation."
-"Bit sets are of the class"
+"The " { $vocab-link "bit-sets" } " vocabulary implements bit-array-backed sets. Bitsets are efficient for implementing relatively dense sets whose members are in a contiguous range of integers starting from 0. One bit is required for each integer in this range in the underlying representation." $nl
+"Bit sets form a class:"
 { $subsection bit-set }
-"They can be instantiated with the word"
+"Constructing new bit sets:"
 { $subsection <bit-set> } ;
 
 ABOUT: "bit-sets"
 
 HELP: bit-set
-{ $class-description "The class of bit-array-based sets. These implement the " { $link "sets" } "." } ;
+{ $class-description "The class of bit-array-based " { $link "sets" } "." } ;
 
 HELP: <bit-set>
 { $values { "capacity" integer } { "bit-set" bit-set } }