We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c176901 commit 4ce3536Copy full SHA for 4ce3536
kotlinx-coroutines-core/common/src/Deferred.kt
@@ -22,7 +22,7 @@ import kotlinx.coroutines.selects.*
22
* Usually, a deferred value is created in _active_ state (it is created and started).
23
* However, the [async][CoroutineScope.async] coroutine builder has an optional `start` parameter that creates a deferred value in _new_ state
24
* when this parameter is set to [CoroutineStart.LAZY].
25
- * Such a deferred can be be made _active_ by invoking [start], [join], or [await].
+ * Such a deferred can be made _active_ by invoking [start], [join], or [await].
26
*
27
* A deferred value is a [Job]. A job in the
28
* [coroutineContext](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/coroutine-context.html)
0 commit comments