Fix scaladoc (#8476)

This commit is contained in:
kenji yoshida 2026-01-11 21:20:40 +09:00 committed by GitHub
parent 072181499a
commit 2338d5f4ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 2 additions and 8 deletions

View File

@ -217,7 +217,7 @@ end ParsedSbtFileExpressions
* val settings = parser.settings * val settings = parser.settings
* }}} * }}}
* *
* @param file The file we're parsing (may be a dummy file) * @param path The path we're parsing (may be a dummy file)
* @param lines The parsed "lines" of the file, where each string is a line. * @param lines The parsed "lines" of the file, where each string is a line.
*/ */
private[sbt] case class SbtParser(path: VirtualFileRef, lines: Seq[String]) private[sbt] case class SbtParser(path: VirtualFileRef, lines: Seq[String])

View File

@ -104,8 +104,6 @@ object ConcurrentRestrictions {
/** /**
* Implements concurrency restrictions on tasks based on Tags. * Implements concurrency restrictions on tasks based on Tags.
* @param get
* extracts tags from a task
* @param validF * @param validF
* defines whether a set of tasks are allowed to execute concurrently based on their merged tags * defines whether a set of tasks are allowed to execute concurrently based on their merged tags
*/ */
@ -144,10 +142,6 @@ object ConcurrentRestrictions {
* restrictions on concurrent task execution. * restrictions on concurrent task execution.
* @return * @return
* a pair, with _1 being the CompletionService and _2 a function to shutdown the service. * a pair, with _1 being the CompletionService and _2 a function to shutdown the service.
* @tparam A
* the task type
* @tparam R
* the type of data that will be computed by the CompletionService.
*/ */
def completionService( def completionService(
tags: ConcurrentRestrictions, tags: ConcurrentRestrictions,

View File

@ -796,7 +796,7 @@ trait Init:
/** /**
* An `Initialize[T]` associated with a `ScopedKey[S]`. * An `Initialize[T]` associated with a `ScopedKey[S]`.
* @tparam S the type of the associated `ScopedKey` * @tparam S the type of the associated `ScopedKey`
* @tparam T the type of the value this `Initialize` defines. * @tparam A1 the type of the value this `Initialize` defines.
*/ */
sealed trait Keyed[S, A1] extends Initialize[A1]: sealed trait Keyed[S, A1] extends Initialize[A1]:
def scopedKey: ScopedKey[S] def scopedKey: ScopedKey[S]