Skip to content

Commit

Permalink
clarified reference to example
Browse files Browse the repository at this point in the history
  • Loading branch information
k4y3ff committed Apr 21, 2014
1 parent a5a2dbe commit 5eff83f
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 @@ -140,7 +140,7 @@ This process is complicated, so let's illustrate it further.
;=> "i like peanut butter and jelly"
```

First, `reduce` calls `join-with-space` with "i" and "like", returning "i like". Then, in order, it makes the following function calls:
In the example above, `reduce` calls `join-with-space` with "i" and "like", returning "i like". Then, in order, it makes the following function calls:

* `(join-with-space "i like" "peanut")`
* `(join-with-space "i like peanut" "butter")`
Expand Down

0 comments on commit 5eff83f

Please sign in to comment.