diff options
author | Greg Brown <greg.brown01@ed.ac.uk> | 2022-12-18 13:46:14 +0000 |
---|---|---|
committer | Greg Brown <greg.brown01@ed.ac.uk> | 2022-12-18 13:46:14 +0000 |
commit | 66fcbcea0b05807d1a3063f266384c0b36798154 (patch) | |
tree | 83a9247b3bd1767db9ce16e21a9590c0996b9d1f /src/Obs/Syntax.idr | |
parent | 00bab44d15ca4e1f0d77cfc8351056d22b83e225 (diff) |
syntax: rename "_" -> "*".
Diffstat (limited to 'src/Obs/Syntax.idr')
-rw-r--r-- | src/Obs/Syntax.idr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Obs/Syntax.idr b/src/Obs/Syntax.idr index 07c625b..6b95910 100644 --- a/src/Obs/Syntax.idr +++ b/src/Obs/Syntax.idr @@ -36,7 +36,7 @@ Pretty Syntax where prettyPrec d (Var x str) = pretty str prettyPrec d (Sort x s) = prettyPrec d s prettyPrec d (Top x) = pretty "()" - prettyPrec d (Point x) = pretty "_" + prettyPrec d (Point x) = pretty "*" prettyPrec d (Bottom x) = pretty "Void" prettyPrec d (Absurd x a t) = parenthesise (d > Open) $ |