Skip to content

Commit

Permalink
Merge pull request #252 from eush77/ch10-missing-lift
Browse files Browse the repository at this point in the history
ch10: add missing liftA2 in one of the examples
  • Loading branch information
KtorZ committed Mar 13, 2016
2 parents dfbfa04 + e9b4357 commit d83fe47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ch10.md
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ To demonstrate:
```js
var tOfM = compose(Task.of, Maybe.of);

liftA2(_.concat, tOfM('Rainy Days and Mondays'), tOfM(' always get me down'));
liftA2(liftA2(_.concat), tOfM('Rainy Days and Mondays'), tOfM(' always get me down'));
// Task(Maybe('Rainy Days and Mondays always get me down'))
```

Expand Down

0 comments on commit d83fe47

Please sign in to comment.