Skip to content

Commit 663d744

Browse files
committed
Fix unclosed tags in some scaladocs
1 parent d733616 commit 663d744

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

core/shared/src/main/scala/fs2/Stream.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ import Pull.StreamPullOps
106106
* - `Stream.emit >=> f == f` (left identity)
107107
* - `f >=> Stream.emit === f` (right identity - note weaker equality notion here)
108108
* - `(f >=> g) >=> h == f >=> (g >=> h)` (associativity)
109-
* where `Stream.emit(a)` is defined as `chunk(Chunk.singleton(a)) and
109+
* where `Stream.emit(a)` is defined as `chunk(Chunk.singleton(a))` and
110110
* `f >=> g` is defined as `a => a flatMap f flatMap g`
111111
*
112112
* The monad is the list-style sequencing monad:
@@ -377,7 +377,7 @@ final class Stream[+F[_], +O] private[fs2] (private[fs2] val underlying: Pull[F,
377377
filterWithPrevious((o1, o2) => eq.neqv(f(o1), f(o2)))
378378

379379
/** Collects all output chunks in to a single chunk and emits it at the end of the
380-
* source stream. Note: if more than 2^32-1 elements are collected, this operation
380+
* source stream. Note: if more than 2^(32-1)^ elements are collected, this operation
381381
* will fail.
382382
*
383383
* @example {{{

core/shared/src/main/scala/fs2/internal/ScopedResource.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ import fs2.Compiler
5454
* scope is closed (or when the resource lease is no longer required) release the lease with `Lease#cancel`.
5555
*
5656
* Note that every method which may potentially call a resource finalizer returns `F[Either[Throwable, Unit]]`
57-
* instead of `F[Unit]`` to make sure any errors that occur when releasing the resource are properly handled.
57+
* instead of `F[Unit]` to make sure any errors that occur when releasing the resource are properly handled.
5858
*/
5959
private[fs2] sealed abstract class ScopedResource[F[_]] {
6060

io/shared/src/test/scala/fs2/io/file/FilesExamples.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ object Examples {
8282
*
8383
* We have two options:
8484
* - call pathWithGreatestIn using the inverse of the feature, ensuring to "undo" the inverse on the
85-
* result. This requires a `Group` constraint on A`
85+
* result. This requires a `Group` constraint on `A`
8686
* - pass a different `Order` instance which reverses the order
8787
*
8888
* The second option is better for callers and is more general (it doesn't require a `Group[A]` instance).

0 commit comments

Comments
 (0)