We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7ddb2d commit 8c65b5bCopy full SHA for 8c65b5b
kotlinx-coroutines-core/common/src/Dispatchers.common.kt
@@ -56,7 +56,7 @@ public expect object Dispatchers {
56
* ```
57
* withContext(Dispatchers.Unconfined) {
58
* println(1)
59
- * withContext(Dispatchers.Unconfined) { // Nested unconfined
+ * launch(Dispatchers.Unconfined) { // Nested unconfined
60
* println(2)
61
* }
62
* println(3)
0 commit comments