Skip to content

Remove unused constraint #114

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Breaking changes:
New features:

Bugfixes:
- Removed unused constraint from `Ord1` instance (#114)

Other improvements:

Expand Down
2 changes: 1 addition & 1 deletion src/Control/Monad/Free.purs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ instance ordFree :: (Functor f, Ord1 f, Ord a) => Ord (Free f a) where
_, Left _ -> GT
Right a, Right b -> compare a b

instance ord1Free :: (Functor f, Ord1 f, Ord a) => Ord1 (Free f) where
instance ord1Free :: (Functor f, Ord1 f) => Ord1 (Free f) where
compare1 = compare

instance freeFunctor :: Functor (Free f) where
Expand Down