]> gitweb.factorcode.org Git - factor.git/commitdiff
Fixing bit sets help
authorDaniel Ehrenberg <littledan@Macintosh-122.local>
Wed, 17 Mar 2010 03:59:35 +0000 (23:59 -0400)
committerDaniel Ehrenberg <littledan@Macintosh-122.local>
Wed, 17 Mar 2010 03:59:35 +0000 (23:59 -0400)
basis/bit-sets/bit-sets-docs.factor

index a2792d32131f99acdaf45269d3ef657c4d58bf84..bb4dc75cac522bdf1ff7749fe8bfce398098831c 100644 (file)
@@ -2,7 +2,7 @@ USING: help.markup help.syntax sequences math ;
 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."
+"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 are of the class"
 { $subsection bit-set }
 "They can be instantiated with the word"
@@ -11,7 +11,7 @@ ARTICLE: "bit-sets" "Bit sets"
 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 } }