We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
sampleStart
sampleEnd
1 parent 0148534 commit 20707d3Copy full SHA for 20707d3
1 file changed
docs/topics/coroutine-context-and-dispatchers.md
@@ -227,7 +227,6 @@ import kotlinx.coroutines.*
227
fun log(msg: String) = println("[${Thread.currentThread().name}] $msg")
228
229
fun main() {
230
-//sampleStart
231
newSingleThreadContext("Ctx1").use { ctx1 ->
232
newSingleThreadContext("Ctx2").use { ctx2 ->
233
runBlocking(ctx1) {
@@ -239,7 +238,6 @@ fun main() {
239
238
}
240
241
242
-//sampleEnd
243
244
```
245
0 commit comments