]> gitweb.factorcode.org Git - factor.git/commitdiff
Fix a small typo in columns documentation
authorAlfredo Beaumont <alfredo.beaumont@gmail.com>
Mon, 7 Jul 2008 21:28:22 +0000 (23:28 +0200)
committerAlfredo Beaumont <alfredo.beaumont@gmail.com>
Mon, 7 Jul 2008 21:28:22 +0000 (23:28 +0200)
extra/columns/columns-docs.factor

index a2f0cccf3bd704529178f8aa3319a50460daac27..a5b26e3fd017186e34be40dad175a6b14633b1cd 100644 (file)
@@ -11,7 +11,7 @@ HELP: column
 
 HELP: <column> ( seq n -- column )
 { $values { "seq" sequence } { "n" "a non-negative integer" } { "column" column } }
-{ $description "Outputs a new virtual sequence which presents a fixed column of a matrix represented as a sequence of rows." "The " { $snippet "i" } "th element of a column is the " { $snippet "n" } "th element of the " { $snippet "i" } "th element of" { $snippet "seq" } ". Every element of " { $snippet "seq" } " must be a sequence, and all sequences must have equal length." }
+{ $description "Outputs a new virtual sequence which presents a fixed column of a matrix represented as a sequence of rows." "The " { $snippet "i" } "th element of a column is the " { $snippet "n" } "th element of the " { $snippet "i" } "th element of " { $snippet "seq" } ". Every element of " { $snippet "seq" } " must be a sequence, and all sequences must have equal length." }
 { $examples
     { $example
         "USING: arrays prettyprint columns ;"