-
Notifications
You must be signed in to change notification settings - Fork 54
Open
Labels
TypoTypographical or grammatical errors in the textTypographical or grammatical errors in the text
Description
This:
monadLiftshould distribute overbindso thatmonadLift (x >>= f : m α)is the same as(monadLift x : m α) >>= fun y => monadLift (f y).
should read
monadLiftshould distribute overbindso that(monadLift (x >>= f : m α) : n α)is the same as(monadLift (x : m α) : n α) >>= fun (y : α) => (monadLift (f y : m β) : n β).
or even
monadLiftshould distribute overbindso that(monadLift (x >>= f : m α) : T m α)is the same as(monadLift (x : m α) : T m α) >>= fun (y : α) => (monadLift (f y : m β) : T m β).
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
TypoTypographical or grammatical errors in the textTypographical or grammatical errors in the text