Skip to content

Commit a85e8fb

Browse files
Update kotlinx-coroutines-core/jvm/src/CoroutineContext.kt
Co-authored-by: dkhalanskyjb <[email protected]>
1 parent be8161a commit a85e8fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kotlinx-coroutines-core/jvm/src/CoroutineContext.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public actual fun CoroutineScope.newCoroutineContext(context: CoroutineContext):
3131
public actual fun CoroutineContext.newCoroutineContext(addedContext: CoroutineContext): CoroutineContext {
3232
/*
3333
* Fast-path: we only have to copy/merge if 'addedContext' (which typically has one or two elements)
34-
* contains copyable element.
34+
* contains copyable elements.
3535
*/
3636
if (!addedContext.fold(false, hasCopyableElements)) return this + addedContext
3737
return foldCopies(this, addedContext, false)

0 commit comments

Comments
 (0)