chore(tests/lean/hott/inj_tac): fix typo

This commit is contained in:
Leonardo de Moura 2015-05-01 18:18:57 -07:00
parent e8affed020
commit ea87dd48e3

View file

@ -11,7 +11,7 @@ end
example (A : Type) (n : nat) (v w : vector A n) (a : A) (b : A) :
a :: v = b :: w → b = a :=
begin
intro H, injection H with aeqb beqw,
intro H, injection H with aeqb neqn beqw,
rewrite aeqb
end