chore(library/init/wf): add parentheses

This commit is contained in:
Leonardo de Moura 2019-07-16 10:53:00 -07:00
parent 6f31f6a38f
commit 70066eaea7

View file

@ -54,7 +54,7 @@ theorem induction {C : α → Prop} (a : α) (h : ∀ x, (∀ y, r y x → C y)
recursion hwf a h
variable {C : α → Sort v}
variable F : ∀ x, (∀ y, r y x → C y) → C x
variable (F : ∀ x, (∀ y, r y x → C y) → C x)
def fixF (x : α) (a : Acc r x) : C x :=
Acc.recOn a (fun x₁ ac₁ ih => F x₁ ih)