We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9e4af9 commit 054fcc2Copy full SHA for 054fcc2
common/kotlinx-coroutines-core-common/src/Builders.common.kt
@@ -68,7 +68,7 @@ public fun CoroutineScope.launch(
68
*
69
* By default, the coroutine is immediately scheduled for execution.
70
* Other options can be specified via `start` parameter. See [CoroutineStart] for details.
71
- * An optional [start] parameter can be set to [CoroutineStart.LAZY] to start coroutine _lazily_. In this case,,
+ * An optional [start] parameter can be set to [CoroutineStart.LAZY] to start coroutine _lazily_. In this case,
72
* the resulting [Deferred] is created in _new_ state. It can be explicitly started with [start][Job.start]
73
* function and will be started implicitly on the first invocation of [join][Job.join], [await][Deferred.await] or [awaitAll].
74
0 commit comments