File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
common/kotlinx-coroutines-core-common/src Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ public fun CoroutineScope.launch(
6868 *
6969 * By default, the coroutine is immediately scheduled for execution.
7070 * 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,,
71+ * An optional [start] parameter can be set to [CoroutineStart.LAZY] to start coroutine _lazily_. In this case,
7272 * the resulting [Deferred] is created in _new_ state. It can be explicitly started with [start][Job.start]
7373 * function and will be started implicitly on the first invocation of [join][Job.join], [await][Deferred.await] or [awaitAll].
7474 *
You can’t perform that action at this time.
0 commit comments