Skip to content

Commit

Permalink
Fixed grammar and typo
Browse files Browse the repository at this point in the history
Switched an “it’s” to “its” and added a missing quote.
  • Loading branch information
hasselg committed Apr 12, 2014
1 parent 326adea commit 36500a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/higher_order.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ process_double([5,6,7]) // => [10, 12, 14]


Let's look at another example.
We'll create a function called `buildMultiplier` that takes a number `x` as input and returns a function that multiplies it's argument by x :
We'll create a function called `buildMultiplier` that takes a number `x` as input and returns a function that multiplies its argument by `x` :

```javascript
var buildMultiplier = function(x) {
Expand Down

0 comments on commit 36500a0

Please sign in to comment.