From: Alexander Iljin Date: Sun, 10 Apr 2016 16:08:18 +0000 (+0300) Subject: sequences-docs: fix wording X-Git-Tag: unmaintained~1110 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=ecd3d76a4ef35e7b2f4358e970dc1d7f3ca677c1 sequences-docs: fix wording --- diff --git a/core/sequences/sequences-docs.factor b/core/sequences/sequences-docs.factor index 4eb46b2c65..c76361dad4 100644 --- a/core/sequences/sequences-docs.factor +++ b/core/sequences/sequences-docs.factor @@ -570,7 +570,7 @@ HELP: filter! HELP: reject { $values { "seq" sequence } { "quot" { $quotation ( ... elt -- ... ? ) } } { "subseq" "a new sequence" } } -{ $description "Applies the quotation to each element in turn, and outputs a new sequence removing with the elements of the original sequence for which the quotation output a true value." } ; +{ $description "Applies the quotation to each element in turn, and outputs a new sequence removing the elements of the original sequence for which the quotation outputs a true value." } ; HELP: reject-as { $values { "seq" sequence } { "quot" { $quotation ( ... elt -- ... ? ) } } { "exemplar" sequence } { "subseq" "a new sequence" } }