Documentation Inconsistency on Integer Range in Stream Creation
I think I spotted an issue in the docs:
https://effect.website/docs/guides/streaming/stream/creating#range
but:
in the actual code
https://effect.website/docs/guides/streaming/stream/creating#range
To create a stream of integers within a specified range [min, max) (excluding max),
but:
Constructs a stream from a range of integers, including both endpoints.
in the actual code
Explore diverse methods for crafting
Streams in Effect, tailored to your specific needs. Learn about common constructors like make, empty, unit, range, iterate, and scoped. Discover how to generate streams from success and failure using succeed and fail functions, and construct streams from chunks, effects, asynchronous callbac...
