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
* }}}
*
* @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.
*/
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.
* @param get
* extracts tags from a task
* @param validF
* 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.
* @return
* 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(
tags: ConcurrentRestrictions,

View File

@ -796,7 +796,7 @@ trait Init:
/**
* An `Initialize[T]` associated with a `ScopedKey[S]`.
* @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]:
def scopedKey: ScopedKey[S]