Skip to content

Commit 4ce3536

Browse files
authored
Remove duplicated 'be' from Deferred kdoc (#3644)
Thanks!
1 parent c176901 commit 4ce3536

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import kotlinx.coroutines.selects.*
2222
* Usually, a deferred value is created in _active_ state (it is created and started).
2323
* However, the [async][CoroutineScope.async] coroutine builder has an optional `start` parameter that creates a deferred value in _new_ state
2424
* when this parameter is set to [CoroutineStart.LAZY].
25-
* Such a deferred can be be made _active_ by invoking [start], [join], or [await].
25+
* Such a deferred can be made _active_ by invoking [start], [join], or [await].
2626
*
2727
* A deferred value is a [Job]. A job in the
2828
* [coroutineContext](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/coroutine-context.html)

0 commit comments

Comments
 (0)