diff options
author | joe <joe@jerkface.net> | 2018-05-31 22:03:07 -0400 |
---|---|---|
committer | joe <joe@jerkface.net> | 2018-05-31 22:03:07 -0400 |
commit | f690b36615434feebdd63f721853e82fa5224297 (patch) | |
tree | 9a6aecdd2c7e2f5481a7ab3654667e329d1deb62 | |
parent | 2249bb233864cda7b7213e5baa7848e035110508 (diff) |
Ord instance for Connection.Status.
-rw-r--r-- | Connection.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Connection.hs b/Connection.hs index a3004c11..7228a0e4 100644 --- a/Connection.hs +++ b/Connection.hs | |||
@@ -13,7 +13,7 @@ data Status status | |||
13 | = Dormant | 13 | = Dormant |
14 | | InProgress status | 14 | | InProgress status |
15 | | Established | 15 | | Established |
16 | deriving Functor | 16 | deriving (Eq,Ord,Functor) |
17 | 17 | ||
18 | data Policy | 18 | data Policy |
19 | = RefusingToConnect | 19 | = RefusingToConnect |