Skip to content

Commit

Permalink
Fixed formatting overrun error in flatMap section (#1421)
Browse files Browse the repository at this point in the history
Fixed formatting error in 2nd paragraph of flatMap section, by reinstating missing backquote.
  • Loading branch information
jon-hanson authored and kailuowang committed Oct 23, 2016
1 parent f90245d commit 049546f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/main/tut/typeclasses/monad.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ implicit def optionMonad(implicit app: Applicative[Option]) =
follows this tradition by providing implementations of `flatten` and `map`
derived from `flatMap` and `pure`.

In addition to requiring `flatMap` and pure`, Cats has chosen to require
In addition to requiring `flatMap` and `pure`, Cats has chosen to require
`tailRecM` which encodes stack safe monadic recursion, as described in
[Stack Safety for Free](http://functorial.com/stack-safety-for-free/index.pdf) by
Phil Freeman. Because monadic recursion is so common in functional programming but
Expand Down

0 comments on commit 049546f

Please sign in to comment.