From 7be0c3fd4be4cf4538607c2d6631107c51c74e24 Mon Sep 17 00:00:00 2001 From: Don Viszneki Date: Wed, 11 Dec 2019 23:59:48 -0800 Subject: [PATCH 1/2] mention merge* in parallel doc --- lib/index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/index.js b/lib/index.js index f0fbc60..5ac9806 100755 --- a/lib/index.js +++ b/lib/index.js @@ -3897,6 +3897,9 @@ addMethod('flatten', function () { * the results until they can be returned to the consumer in their original * order. * + * For parallelizing streams without less respect for ordering, see + * [merge](#merge) and [mergeWithLimit](#mergeWithLimit) + * * @id parallel * @section Higher-order Streams * @name Stream.parallel(n) From 2b33160ac5f07045717c1bf7e6d21fc11c64724d Mon Sep 17 00:00:00 2001 From: Don Viszneki Date: Thu, 12 Dec 2019 00:02:28 -0800 Subject: [PATCH 2/2] grammar --- lib/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/index.js b/lib/index.js index 5ac9806..73de1de 100755 --- a/lib/index.js +++ b/lib/index.js @@ -3897,8 +3897,8 @@ addMethod('flatten', function () { * the results until they can be returned to the consumer in their original * order. * - * For parallelizing streams without less respect for ordering, see - * [merge](#merge) and [mergeWithLimit](#mergeWithLimit) + * For parallelizing streams with less respect for ordering, see [merge](#merge) + * and [mergeWithLimit](#mergeWithLimit) * * @id parallel * @section Higher-order Streams