From 30c32908a3ea119f7cad7ba20bcd7bbd956a2034 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 7 Feb 2017 07:54:20 -0800 Subject: [PATCH] =?UTF-8?q?Use=20=E2=80=9Ccomposes=E2=80=9D=20to=20describ?= =?UTF-8?q?e=20flow/flowRight.=20[closes=20#2979]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- flow.js | 2 +- flowRight.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flow.js b/flow.js index 398b1ef0b..0016789bd 100644 --- a/flow.js +++ b/flow.js @@ -1,5 +1,5 @@ /** - * Creates a function that returns the result of invoking the given functions + * Composes a function that returns the result of invoking the given functions * with the `this` binding of the created function, where each successive * invocation is supplied the return value of the previous. * diff --git a/flowRight.js b/flowRight.js index e6776bee8..6375ba2ca 100644 --- a/flowRight.js +++ b/flowRight.js @@ -1,7 +1,7 @@ import flow from './flow.js' /** - * This method is like `flow` except that it creates a function that + * This method is like `flow` except that it composes a function that * invokes the given functions from right to left. * * @since 3.0.0