diff options
author | Damien Doligez <damien.doligez-inria.fr> | 2012-01-25 14:50:03 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 2012-01-25 14:50:03 +0000 |
commit | 6d33d232ffa01202a349b07987ea13079d74ea24 (patch) | |
tree | 5e9834a07871450d0f2adc9d53805557da89e9a7 | |
parent | 38b827b7e45aa04c0f3e7a940c82f939bbfffd4e (diff) |
PR#1284: documentation: remove restriction on mixed streams
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@12077 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | stdlib/stream.mli | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/stdlib/stream.mli b/stdlib/stream.mli index 2859e65e0..10cd97620 100644 --- a/stdlib/stream.mli +++ b/stdlib/stream.mli @@ -27,12 +27,7 @@ exception Error of string accepted, but one of the following components is rejected. *) -(** {6 Stream builders} - - Warning: these functions create streams with fast access; it is illegal - to mix them with streams built with [[< >]]; would raise [Failure] - when accessing such mixed streams. -*) +(** {6 Stream builders} *) val from : (int -> 'a option) -> 'a t (** [Stream.from f] returns a stream built from the function [f]. |