summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGreg Brown <greg.brown01@ed.ac.uk>2022-12-18 22:59:39 +0000
committerGreg Brown <greg.brown01@ed.ac.uk>2022-12-18 22:59:39 +0000
commitd05a1259d764730da53c92db20f74bc5ae6cb953 (patch)
treeed50cc9138775dce1e2f2813f2cfddab4cbc2f22 /src
parent49e4b61cd6b8150e516997606e803bfeec75d1f0 (diff)
fix: correct Sort equality test.
Diffstat (limited to 'src')
-rw-r--r--src/Obs/Sort.idr2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Obs/Sort.idr b/src/Obs/Sort.idr
index d2c8c33..70d5ed2 100644
--- a/src/Obs/Sort.idr
+++ b/src/Obs/Sort.idr
@@ -18,7 +18,7 @@ data Sort : Type where
export
Eq Sort where
Prop == Prop = True
- (Set i) == (Set j) = True
+ (Set i) == (Set j) = i == j
_ == _ = False
export