mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-22 12:32:09 +03:00
[lean/en] add space before colon (#5132)
This commit is contained in:
parent
fa0e3c632f
commit
90d544271e
@ -256,7 +256,7 @@ We now state Collatz conjecture. The proof is left as an exercise to the reader.
|
||||
def collatz_next (n : Nat) : Nat :=
|
||||
if n % 2 = 0 then n / 2 else 3 * n + 1
|
||||
|
||||
def iter (k : Nat) (f: Nat → Nat) :=
|
||||
def iter (k : Nat) (f : Nat → Nat) :=
|
||||
match k with
|
||||
| Nat.zero => fun x => x
|
||||
| Nat.succ k' => fun x => f (iter k' f x)
|
||||
|
Loading…
Reference in New Issue
Block a user