aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--theories/Lists/Streams.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/theories/Lists/Streams.v b/theories/Lists/Streams.v
index 366172381e..a8b55fb3ec 100644
--- a/theories/Lists/Streams.v
+++ b/theories/Lists/Streams.v
@@ -14,9 +14,9 @@ Set Implicit Arguments.
Section Streams.
-Variable A : Set.
+Variable A : Type.
-CoInductive Stream : Set :=
+CoInductive Stream : Type :=
Cons : A -> Stream -> Stream.