]> matita.cs.unibo.it Git - helm.git/commitdiff
intro ==> intros
authorClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Thu, 9 Jun 2005 16:23:05 +0000 (16:23 +0000)
committerClaudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Thu, 9 Jun 2005 16:23:05 +0000 (16:23 +0000)
helm/matita/tests/apply.ma
helm/matita/tests/rewrite.ma

index 9e86635170f0c5e7e16dd0f23d5b0ff7de144d2f..d1be8262fbf6c5540d0ea27b03f0aa6f79894de6 100644 (file)
@@ -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.
index 5bae95b1054ae8792dc69deb5eb41a369a7c433b..e99d75e837ca2140ea67287e4b9203170d267de4 100644 (file)
@@ -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