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(
68
68
*
69
69
* By default, the coroutine is immediately scheduled for execution.
70
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,,
71
+ * An optional [start] parameter can be set to [CoroutineStart.LAZY] to start coroutine _lazily_. In this case,
72
72
* the resulting [Deferred] is created in _new_ state. It can be explicitly started with [start][Job.start]
73
73
* function and will be started implicitly on the first invocation of [join][Job.join], [await][Deferred.await] or [awaitAll].
74
74
*
You can’t perform that action at this time.
0 commit comments