Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszcz committed Nov 14, 2024
1 parent 827ae93 commit fd425cf
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ viewCall = \case
Consider:
```
isEven (x : Nat) : Nat :=
isEven (x : Nat) : Bool :=
let
isEven' : Nat -> Nat
isEven' : Nat -> Bool
| zero := true
| (suc n) := isOdd' n;
isOdd' : Nat -> Nat
isOdd' : Nat -> Bool
| zero := false
| (suc n) := isEven' n;
in isEven' x;
Expand Down

0 comments on commit fd425cf

Please sign in to comment.