Skip to content

Commit

Permalink
fix(data/nat/factorial): fix factorial_zero (#7697)
Browse files Browse the repository at this point in the history
  • Loading branch information
fpvandoorn committed May 23, 2021
1 parent 6cffc9f commit 2734d91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data/nat/factorial.lean
Expand Up @@ -22,7 +22,7 @@ section factorial

variables {m n : ℕ}

@[simp] theorem factorial_zero : 0! = 1! := rfl
@[simp] theorem factorial_zero : 0! = 1 := rfl

@[simp] theorem factorial_succ (n : ℕ) : n.succ! = succ n * n! := rfl

Expand Down

0 comments on commit 2734d91

Please sign in to comment.