Use “composes” to describe flow/flowRight. [closes #2979]

This commit is contained in:
John-David Dalton
2017-02-07 07:54:20 -08:00
parent 3b125166d5
commit 30c32908a3
2 changed files with 2 additions and 2 deletions

View File

@@ -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.
*

View File

@@ -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