Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/shared/src/main/scala/fs2/Stream.scala
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ import scala.collection.mutable.ArrayBuffer
* produces a singly-chunked stream from any input stream `s`.
*
* For instance, for a stream `s` and a function `f: A => B`,
* - the result of `s.map(f)` is a Stream with the same _chunking_ as the `s`; wheras...
* - the result of `s.map(f)` is a Stream with the same _chunking_ as the `s`; whereas...
* - the result of `s.flatMap(x => S.emit(f(x)))` is a Stream structured as a sequence of singleton chunks.
* The latter is using the definition of `map` that is derived from the `Monad` instance.
*
Expand Down