fix(library/hott/funext): compilation error

This commit is contained in:
Leonardo de Moura 2014-11-04 06:53:21 -08:00
parent 261f8a014a
commit 795f664964

View file

@ -14,7 +14,7 @@ open path
axiom funext {A : Type} {P : A → Type} (f g : Π x : A, P x) : IsEquiv (@apD10 A P f g)
definition path_forall {A : Type} {P : A → Type} (f g : Π x : A, P x) : f g → f ≈ g :=
IsEquiv.inv (funext f g)
@IsEquiv.inv _ _ _ (funext f g)
definition path_forall2 {A B : Type} {P : A → B → Type} (f g : Π x y, P x y) :
(Πx y, f x y ≈ g x y) → f ≈ g :=