Skip to content

Commit

Permalink
added "process"
Browse files Browse the repository at this point in the history
  • Loading branch information
k4y3ff committed Apr 21, 2014
1 parent dcd3c27 commit a5a2dbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion outline/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ Let's look at another function that takes a function. This one is `reduce`, and

`reduce` takes the first two members of the provided collection and calls the provided function with those members. Next, it calls the provided function again--this time, using the result of the previous function call, along with the next member of the collection. `reduce` does this over and over again until it finally reaches the end of the collection.

This is complicated, so let's illustrate it further.
This process is complicated, so let's illustrate it further.

```clj
(defn join-with-space
Expand Down

0 comments on commit a5a2dbe

Please sign in to comment.