1
1
mirror of https://github.com/github/semantic.git synced 2024-12-24 15:35:14 +03:00

Don’t override sequenceL for Identity.

This commit is contained in:
Rob Rix 2016-03-10 12:54:26 -05:00
parent 2cd47afafd
commit 912823b2cd

View File

@ -22,5 +22,4 @@ class Crosswalk t where
sequenceL = crosswalk id
instance Crosswalk Identity where
sequenceL = fmap Identity . runIdentity
crosswalk f = fmap Identity . f . runIdentity