Skip to content

Commit

Permalink
rewording of intro paragraph for let
Browse files Browse the repository at this point in the history
  • Loading branch information
k4y3ff committed Apr 21, 2014
1 parent f00ad35 commit b5574a4
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 @@ -201,7 +201,7 @@ Here is an example of how it should work:

## `let`

When you are creating functions, you may want to assign names to values in order to reuse those values or make your code more readable. Inside a function, however, you should _not_ use `def`, like you would outside a function. You use a special form called `let`. Let's look at an example:
When you are creating functions, you may want to assign names to values in order to reuse those values or make your code more readable. Inside of a function, however, you should _not_ use `def`, like you would outside of a function. Instead, you should use a special form called `let`. Let's look at an example:

```clj
(defn spread
Expand Down

0 comments on commit b5574a4

Please sign in to comment.