Skip to content

Commit 20707d3

Browse files
fix: remove sampleStart and sampleEnd comments from example in coroutine-context-and-dispatchers.md (#4081)
1 parent 0148534 commit 20707d3

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

docs/topics/coroutine-context-and-dispatchers.md

-2
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,6 @@ import kotlinx.coroutines.*
227227
fun log(msg: String) = println("[${Thread.currentThread().name}] $msg")
228228

229229
fun main() {
230-
//sampleStart
231230
newSingleThreadContext("Ctx1").use { ctx1 ->
232231
newSingleThreadContext("Ctx2").use { ctx2 ->
233232
runBlocking(ctx1) {
@@ -239,7 +238,6 @@ fun main() {
239238
}
240239
}
241240
}
242-
//sampleEnd
243241
}
244242
```
245243

0 commit comments

Comments
 (0)