]> gitweb.factorcode.org Git - factor.git/commitdiff
Fix bootstrap
authorSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Mon, 9 Jun 2008 10:54:01 +0000 (05:54 -0500)
committerSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Mon, 9 Jun 2008 10:54:01 +0000 (05:54 -0500)
extra/tuple-arrays/tuple-arrays-docs.factor

index d6949eaeac6ea568d6cbb5d3e9a44ae524d91947..d0c86986fd9c2eee08c22ffc4526004f8e4937ec 100644 (file)
@@ -2,8 +2,8 @@ USING: help.syntax help.markup splitting kernel ;
 IN: tuple-arrays
 
 HELP: tuple-array
-{ $description "The class of packed homogeneous tuple arrays. They are created with " { $link <tuple-array> } ". All elements are of the same tuple class. Mutations done to an element are not copied back to the packed array unless it is explicitly written back. Packed follows the sequence protocol and is implemented using the " { $link groups } " class." } ;
+{ $description "The class of packed homogeneous tuple arrays. They are created with " { $link <tuple-array> } ". All elements are of the same tuple class. Mutations done to an element are not copied back to the packed array unless it is explicitly written back.." } ;
 
 HELP: <tuple-array>
 { $values { "example" tuple } { "length" "a non-negative integer" } { "tuple-array" tuple-array } }
-{ $description "Creates an instance of the " { $link <tuple-array> } " class with the given length and containing the given tuple class. The tuple class is specified in the form of an example tuple. If the example tuple has a delegate, the tuple array will store a delegate for each element. Otherwise, the delegate will be assumed to be f." } ;
+{ $description "Creates an instance of the " { $link <tuple-array> } " class with the given length and containing the given tuple class. The tuple class is specified in the form of an example tuple. If the example tuple has a delegate, the tuple array will store a delegate for each element. Otherwise, the delegate will be assumed to be " { $link f } "." } ;