From: Claudio Sacerdoti Coen Date: Thu, 9 Jun 2005 16:23:05 +0000 (+0000) Subject: intro ==> intros X-Git-Tag: PRE_INDEX_1~5 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=46638981d5909c89b85fda70016748942366153f;p=helm.git intro ==> intros --- diff --git a/helm/matita/tests/apply.ma b/helm/matita/tests/apply.ma index 9e8663517..d1be8262f 100644 --- a/helm/matita/tests/apply.ma +++ b/helm/matita/tests/apply.ma @@ -6,7 +6,7 @@ alias id "False" = "cic:/Coq/Init/Logic/False.ind#xpointer(1/1)". theorem b: \forall x:Prop. (not x) \to x \to False. -intro. +intros. apply H. assumption. qed. @@ -19,6 +19,6 @@ theorem a: \forall A:Set. \forall x,y : A. not (x=y) \to not (x=y). -intro. +intros. apply H. qed. diff --git a/helm/matita/tests/rewrite.ma b/helm/matita/tests/rewrite.ma index 5bae95b10..e99d75e83 100644 --- a/helm/matita/tests/rewrite.ma +++ b/helm/matita/tests/rewrite.ma @@ -5,5 +5,5 @@ alias symbol "plus" (instance 0) = "natural plus". theorem a: \forall a,b:nat. a = b \to b + 0 = a. -intro. +intros. rewrite left H. \ No newline at end of file