Update Profunctors.md

`fmap` for `((->) r)` is `(.)`, not `flip (.)`
This commit is contained in:
Vaibhav Sagar 2017-10-07 14:08:57 +08:00 committed by GitHub
parent 8ad20e680f
commit a601e49109

View File

@ -26,7 +26,7 @@ result type:
```haskell
instance Functor ((->) r) where
fmap f g = g . f
fmap f g = f . g
```
Contravariant functors are pretty much like functors, but they require a