diff options
-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]. |