Skip to content

Commit e4406fb

Browse files
committed
Fix unknown tags in some scaladocs
1 parent ab3b894 commit e4406fb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4035,9 +4035,9 @@ object Stream extends StreamLowPriority {
40354035
* or from the observer pipe (when applied to source chunks) will cause the
40364036
* termination of the resulting stream, and will be raised from this.
40374037
*
4038-
* @returns A stream that may emit the same outputs as this stream (source),
4039-
* in the same order and chunks, and performs the same effects as
4040-
* the source; but in which every chunk is processed by the pipe.
4038+
* @return A stream that may emit the same outputs as this stream (source),
4039+
* in the same order and chunks, and performs the same effects as
4040+
* the source; but in which every chunk is processed by the pipe.
40414041
*/
40424042
def observeAsync(
40434043
maxQueued: Int

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ private[fs2] final class Scope[F[_]] private (
303303
go(self, Chain.empty)
304304
}
305305

306-
/** @returns true if the given `scopeId` identifies an ancestor of this scope, or false otherwise.
306+
/** @return true if the given `scopeId` identifies an ancestor of this scope, or false otherwise.
307307
*/
308308
def descendsFrom(scopeId: Unique.Token): Boolean = findSelfOrAncestor(scopeId).isDefined
309309

0 commit comments

Comments
 (0)