Skip to content

Commit

Permalink
Clarify MapCompose documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
allait committed Feb 27, 2014
1 parent c532e13 commit 2e59d77
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/topics/loaders.rst
Original file line number Diff line number Diff line change
Expand Up @@ -631,10 +631,10 @@ Here is a list of all built-in processors:
this processor is the way internal results are passed among functions,
which is as follows:

The input value of this processor is *iterated* and each element is passed
to the first function, and the result of that function (for each element)
is concatenated to construct a new iterable, which is then passed to the
second function, and so on, until the last function is applied for each
The input value of this processor is *iterated* and the first function is
applied to each element. The results of these function calls (one for each element)
are concatenated to construct a new iterable, which is then used to apply the
second function, and so on, until the last function is applied to each
value of the list of values collected so far. The output values of the last
function are concatenated together to produce the output of this processor.

Expand Down

0 comments on commit 2e59d77

Please sign in to comment.