]> gitweb.factorcode.org Git - factor.git/commitdiff
typo in vmerge-head, vmerge-tail docs
authorJoe Groff <arcata@gmail.com>
Mon, 5 Oct 2009 16:14:14 +0000 (11:14 -0500)
committerJoe Groff <arcata@gmail.com>
Mon, 5 Oct 2009 16:14:14 +0000 (11:14 -0500)
basis/math/vectors/vectors-docs.factor

index 82bb037186f1bee05ec3c8db1814527f6bb46aef..6b519f2e850d2e5b61075db710d826b041ab9902 100644 (file)
@@ -369,7 +369,7 @@ HELP: vmerge
 
 HELP: vmerge-head
 { $values { "u" "a sequence" } { "v" "a sequence" } { "h" "a sequence" } }
-{ $description "Creates two new sequences of the same type and size as " { $snippet "u" } " and " { $snippet "v" } " by interleaving the elements from the first half of " { $snippet "u" } " and " { $snippet "v" } "." }
+{ $description "Creates a new sequence of the same type and size as " { $snippet "u" } " and " { $snippet "v" } " by interleaving the elements from the first half of " { $snippet "u" } " and " { $snippet "v" } "." }
 { $examples
 { $example """USING: kernel math.vectors prettyprint ;
 
@@ -379,7 +379,7 @@ HELP: vmerge-head
 
 HELP: vmerge-tail
 { $values { "u" "a sequence" } { "v" "a sequence" } { "t" "a sequence" } }
-{ $description "Creates two new sequences of the same type and size as " { $snippet "u" } " and " { $snippet "v" } " by interleaving the elements from the tail half of " { $snippet "u" } " and " { $snippet "v" } "." }
+{ $description "Creates a new sequence of the same type and size as " { $snippet "u" } " and " { $snippet "v" } " by interleaving the elements from the tail half of " { $snippet "u" } " and " { $snippet "v" } "." }
 { $examples
 { $example """USING: kernel math.vectors prettyprint ;