Skip to content

Commit 479481e

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

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
@@ -48,7 +48,7 @@ private val hasCopyableElements: (Boolean, CoroutineContext.Element) -> Boolean
4848
* * Every CTCE from the left-hand side context that does not have a matching (by key) element from right-hand side context
4949
* is [copied][CopyableThreadContextElement.copyForChild] if [isNewCoroutine] is `true`.
5050
* * Every CTCE from left-hand side context that has matching element in right-hand side context is [merged][CopyableThreadContextElement.mergeForChild]
51-
* * Every CTCE from right-hand side context that hasn't been merged is copied
51+
* * Every CTCE from the right-hand side context that hasn't been merged is copied
5252
* * Everything else is added to the resulting context as is.
5353
*/
5454
private fun foldCopies(originalContext: CoroutineContext, appendContext: CoroutineContext, isNewCoroutine: Boolean): CoroutineContext {

0 commit comments

Comments
 (0)