Skip to content

Commit e8e53ae

Browse files
committed
fix infix operator applications
1 parent 32779d1 commit e8e53ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

NatBool.lp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ symbol = : ℕ → ℕ → 𝔹;
77
notation = infix 10;
88

99
rule 0 = 0true
10-
with s $x = s $y= $x $y
10+
with s $x = s $y$x = $y
1111
with 0 = s _ ↪ false
1212
with s _ = 0false;
1313

@@ -19,4 +19,4 @@ notation ≤ infix 10;
1919

2020
rule 00false
2121
with 0s _ ↪ true
22-
with s $xs $y≤ $x $y;
22+
with s $xs $y$x $y;

0 commit comments

Comments
 (0)