aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories
diff options
context:
space:
mode:
Diffstat (limited to 'theories')
-rwxr-xr-xtheories/Lists/Streams.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/theories/Lists/Streams.v b/theories/Lists/Streams.v
index d63fcac2b..35d67e568 100755
--- a/theories/Lists/Streams.v
+++ b/theories/Lists/Streams.v
@@ -68,7 +68,7 @@ CoInductive EqSt : Stream->Stream->Prop :=
(** A coinduction principle *)
-Meta Definition CoInduction proof :=
+Tactic Definition CoInduction proof :=
Cofix proof; Intros; Constructor;
[Clear proof | Try (Apply proof;Clear proof)].
@@ -76,7 +76,7 @@ Meta Definition CoInduction proof :=
(** Extensional equality is an equivalence relation *)
Theorem EqSt_reflex : (s:Stream)(EqSt s s).
-(CoInduction EqSt_reflex).
+CoInduction EqSt_reflex.
Reflexivity.
Qed.