We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
CoroutineScope.plus
1 parent 7e2d237 commit 2a580dfCopy full SHA for 2a580df
kotlinx-coroutines-core/common/src/CoroutineScope.kt
@@ -90,7 +90,7 @@ public interface CoroutineScope {
90
* Adds the specified coroutine context to this scope, overriding existing elements in the current
91
* scope's context with the corresponding keys.
92
*
93
- * This is a shorthand for `CoroutineScope(thisScope + context)`.
+ * This is a shorthand for `CoroutineScope(thisScope.coroutineContext + context)`.
94
*/
95
public operator fun CoroutineScope.plus(context: CoroutineContext): CoroutineScope =
96
ContextScope(coroutineContext + context)
0 commit comments