Add Eq and Ord instances to Note

This commit is contained in:
Ellie Hermaszewska 2023-05-16 14:26:31 +08:00
parent 1df98d31b6
commit 7838253a7a
No known key found for this signature in database

View File

@ -155,7 +155,7 @@ data Note msg
Note msg
| -- | A hint, to propose potential fixes or help towards fixing the issue.
Hint msg
deriving (Functor, Foldable, Traversable)
deriving (Eq, Ord, Show, Functor, Foldable, Traversable)
#ifdef USE_AESON
instance ToJSON msg => ToJSON (Note msg) where