From e6dc3d26de0fbd4d0b09dd692432e2cd14774118 Mon Sep 17 00:00:00 2001 From: notin Date: Tue, 17 Apr 2007 14:18:25 +0000 Subject: Correction du bug #1510 git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@9777 85f007b7-540e-0410-9357-904b9bb8a0f7 --- theories/Lists/Streams.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/theories/Lists/Streams.v b/theories/Lists/Streams.v index a8b55fb3ec..4e8be48a44 100644 --- a/theories/Lists/Streams.v +++ b/theories/Lists/Streams.v @@ -162,13 +162,13 @@ End Stream_Properties. End Streams. Section Map. -Variables A B : Set. +Variables A B : Type. Variable f : A -> B. CoFixpoint map (s:Stream A) : Stream B := Cons (f (hd s)) (map (tl s)). End Map. Section Constant_Stream. -Variable A : Set. +Variable A : Type. Variable a : A. CoFixpoint const : Stream A := Cons a const. End Constant_Stream. -- cgit v1.2.3