Skip to content

Commit

Permalink
Merge pull request #1119 from afiore/fix-contravariant-doc
Browse files Browse the repository at this point in the history
Fix contramap signature in Contravariant doc page
  • Loading branch information
ceedubs authored Jun 13, 2016
2 parents f592db8 + e28204d commit b149835
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/main/tut/contravariant.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The `Contravariant` type class is for functors that define a `contramap`
function with the following type:

```scala
def contramap[A, B](f: B => A): F[A] => F[B]
def contramap[A, B](fa: F[A])(f: B => A): F[B]
```

It looks like regular (also called `Covariant`) [`Functor`](functor.html)'s `map`,
Expand Down

0 comments on commit b149835

Please sign in to comment.