Skip to content

Commit

Permalink
Update comonad.md (#3019)
Browse files Browse the repository at this point in the history
Fix typo in Comonad documentation
  • Loading branch information
chiller authored and kailuowang committed Sep 3, 2019
1 parent 764ade2 commit 2d0e6fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/main/tut/typeclasses/comonad.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ refer to [https://ncatlab.org/nlab/show/duality](https://ncatlab.org/nlab/show/d

### extract

Monad's have `pure` from `Applicative` which gives you the ability to wrap
Monads have `pure` from `Applicative` which gives you the ability to wrap
a value `A` using the type constructor giving an `F[A]`. Comonad has
`extract` which instead takes an `F[A]` and extracts the `A`. Therefore, to be
able to implement extract we must have a type of which we are certain
Expand Down

0 comments on commit 2d0e6fd

Please sign in to comment.