ekmett / profunctors

Haskell 98 Profunctors
http://hackage.haskell.org/package/profunctors
Other
70 stars 43 forks source link

Fix link to second and first in Strong Profunctor laws targeting Arrow #66

Closed lemastero closed 5 years ago

lemastero commented 5 years ago

In Strong Profunctor laws there are references to first and second from Arrow:

lmap fst ≡ rmap fst . first'
lmap (first f) . second' ≡ rmap (first f) . second'

but they should link to Strong first' and second'

lmap fst ≡ rmap fst . first'
lmap (first' f) . second' ≡ rmap (first' f) . second'