From 2d13aa8e6ff68d06dfa879a79539282b7eff382e Mon Sep 17 00:00:00 2001 From: Joe Groff Date: Mon, 5 Oct 2009 11:14:14 -0500 Subject: [PATCH] typo in vmerge-head, vmerge-tail docs --- basis/math/vectors/vectors-docs.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/basis/math/vectors/vectors-docs.factor b/basis/math/vectors/vectors-docs.factor index 82bb037186..6b519f2e85 100644 --- a/basis/math/vectors/vectors-docs.factor +++ b/basis/math/vectors/vectors-docs.factor @@ -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 ;