Skip to content

Commit 054fcc2

Browse files
satoshunelizarov
authored andcommitted
fix small typo of async method
1 parent d9e4af9 commit 054fcc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/kotlinx-coroutines-core-common/src/Builders.common.kt

+1-1
Original file line numberDiff line numberDiff 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
*

0 commit comments

Comments
 (0)