Remove redundant bracket

This commit is contained in:
Georgi Lyubenov 2019-05-05 17:24:42 +03:00
parent 849ad0740a
commit 35132bd70e

View File

@ -125,7 +125,7 @@ data SNat :: Nat -> * where
SS :: SNat n -> SNat ('S n)
instance TestEquality SNat where
testEquality SZ SZ = (Just Refl)
testEquality SZ SZ = Just Refl
testEquality (SS _) SZ = Nothing
testEquality SZ (SS _) = Nothing
testEquality (SS n) (SS m) =