Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit bcca57a

Browse files
committed
Align.
1 parent c746f93 commit bcca57a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

semantic-analysis/src/Analysis/Syntax.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ data Term sig v
1919
| Term (sig (Term sig v))
2020

2121
instance (forall t . Eq t => Eq (sig t), Eq v) => Eq (Term sig v) where
22-
Var v1 == Var v2 = v1 == v2
22+
Var v1 == Var v2 = v1 == v2
2323
Term s1 == Term s2 = s1 == s2
24-
_ == _ = False
24+
_ == _ = False
2525

2626
instance (forall t . Eq t => Eq (sig t), forall t. Ord t => Ord (sig t), Ord v) => Ord (Term sig v) where
2727
compare (Var v1) (Var v2) = compare v1 v2

0 commit comments

Comments
 (0)