Skip to content

Commit ab3b894

Browse files
committed
Fix unknown parameters in some scaladocs
1 parent 663d744 commit ab3b894

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -786,8 +786,8 @@ object Pull extends PullLowPriority {
786786
/** Steps through the stream, providing a `stepLeg`.
787787
* Yields to head in form of chunk, then id of the scope that was active after step evaluated and tail of the `stream`.
788788
*
789-
* @param stream Stream to step
790-
* @param scopeId scope has to be changed before this step is evaluated, id of the scope must be supplied
789+
* @param stream Stream to step
790+
* @param scope Scope has to be changed before this step is evaluated, id of the scope must be supplied
791791
*/
792792
private final case class StepLeg[+F[_], +O](stream: Pull[F, O, Unit], scope: Unique.Token)
793793
extends Action[Nothing, Nothing, Option[Stream.StepLeg[F, O]]]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import InterruptContext.InterruptionOutcome
2929

3030
/** A context of interruption status. This is shared from the parent that was created as interruptible to all
3131
* its children. It assures consistent view of the interruption through the stack
32-
* @param concurrent Concurrent, used to create interruption at Eval.
32+
* @param deferred Deferred, used to create interruption at Eval.
3333
* If signalled with None, normal interruption is signalled. If signaled with Some(err) failure is signalled.
3434
* @param ref When None, scope is not interrupted,
3535
* when Some(None) scope was interrupted, and shall continue with `whenInterrupted`

io/jvm-native/src/main/scala/fs2/io/file/DeprecatedFilesApi.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ private[file] trait DeprecatedFilesApi[F[_]] { self: Files[F] =>
134134
* readAttributes method and the file type tested with the BasicFileAttributes.isDirectory() method.
135135
*
136136
* @param path the path to the file to test
137-
* @param options - options indicating how symbolic links are handled
137+
* @param linkOption - options indicating how symbolic links are handled
138138
* @return true if the file is a directory; false if the file does not exist, is not a directory, or it cannot be determined if the file is a directory or not.
139139
*/
140140
@deprecated("Use overload which uses fs2.io.file.Path", "3.1.0")
@@ -158,7 +158,7 @@ private[file] trait DeprecatedFilesApi[F[_]] { self: Files[F] =>
158158
* method and the file type tested with the BasicFileAttributes.isRegularFile() method.
159159
*
160160
* @param path the path to the file
161-
* @param options options indicating how symbolic links are handled
161+
* @param linkOption options indicating how symbolic links are handled
162162
* @return true if the file is a regular file; false if the file does not exist, is not a regular file, or it cannot be determined if the file is a regular file or not.
163163
*/
164164
@deprecated("Use isRegularFile which uses fs2.io.file.Path", "3.1.0")

0 commit comments

Comments
 (0)