@@ -65,7 +65,7 @@ fun main() = runBlocking<Unit> {
6565
6666</div >
6767
68- > You can get full code [ here] ( ../kotlinx-coroutines-core/jvm/test/guide/example-context-01.kt ) .
68+ > You can get the full code [ here] ( ../kotlinx-coroutines-core/jvm/test/guide/example-context-01.kt ) .
6969
7070It produces the following output (maybe in different order):
7171
@@ -129,7 +129,7 @@ fun main() = runBlocking<Unit> {
129129
130130</div >
131131
132- > You can get full code [ here] ( ../kotlinx-coroutines-core/jvm/test/guide/example-context-02.kt ) .
132+ > You can get the full code [ here] ( ../kotlinx-coroutines-core/jvm/test/guide/example-context-02.kt ) .
133133
134134Produces the output:
135135
@@ -186,7 +186,7 @@ fun main() = runBlocking<Unit> {
186186
187187</div >
188188
189- > You can get full code [ here] ( ../kotlinx-coroutines-core/jvm/test/guide/example-context-03.kt ) .
189+ > You can get the full code [ here] ( ../kotlinx-coroutines-core/jvm/test/guide/example-context-03.kt ) .
190190
191191There are three coroutines. The main coroutine (#1 ) inside ` runBlocking `
192192and two coroutines computing the deferred values ` a ` (#2 ) and ` b ` (#3 ).
@@ -238,7 +238,7 @@ fun main() {
238238
239239</div >
240240
241- > You can get full code [ here] ( ../kotlinx-coroutines-core/jvm/test/guide/example-context-04.kt ) .
241+ > You can get the full code [ here] ( ../kotlinx-coroutines-core/jvm/test/guide/example-context-04.kt ) .
242242
243243It demonstrates several new techniques. One is using [ runBlocking] with an explicitly specified context, and
244244the other one is using the [ withContext] function to change the context of a coroutine while still staying in the
@@ -274,7 +274,7 @@ fun main() = runBlocking<Unit> {
274274
275275</div >
276276
277- > You can get full code [ here] ( ../kotlinx-coroutines-core/jvm/test/guide/example-context-05.kt ) .
277+ > You can get the full code [ here] ( ../kotlinx-coroutines-core/jvm/test/guide/example-context-05.kt ) .
278278
279279In the [ debug mode] ( #debugging-coroutines-and-threads ) , it outputs something like this:
280280
@@ -332,7 +332,7 @@ fun main() = runBlocking<Unit> {
332332
333333</div >
334334
335- > You can get full code [ here] ( ../kotlinx-coroutines-core/jvm/test/guide/example-context-06.kt ) .
335+ > You can get the full code [ here] ( ../kotlinx-coroutines-core/jvm/test/guide/example-context-06.kt ) .
336336
337337The output of this code is:
338338
@@ -375,7 +375,7 @@ fun main() = runBlocking<Unit> {
375375
376376</div >
377377
378- > You can get full code [ here] ( ../kotlinx-coroutines-core/jvm/test/guide/example-context-07.kt ) .
378+ > You can get the full code [ here] ( ../kotlinx-coroutines-core/jvm/test/guide/example-context-07.kt ) .
379379
380380The result is going to be:
381381
@@ -427,7 +427,7 @@ fun main() = runBlocking(CoroutineName("main")) {
427427
428428</div >
429429
430- > You can get full code [ here] ( ../kotlinx-coroutines-core/jvm/test/guide/example-context-08.kt ) .
430+ > You can get the full code [ here] ( ../kotlinx-coroutines-core/jvm/test/guide/example-context-08.kt ) .
431431
432432The output it produces with ` -Dkotlinx.coroutines.debug ` JVM option is similar to:
433433
@@ -462,7 +462,7 @@ fun main() = runBlocking<Unit> {
462462
463463</div >
464464
465- > You can get full code [ here] ( ../kotlinx-coroutines-core/jvm/test/guide/example-context-09.kt ) .
465+ > You can get the full code [ here] ( ../kotlinx-coroutines-core/jvm/test/guide/example-context-09.kt ) .
466466
467467The output of this code with the ` -Dkotlinx.coroutines.debug ` JVM option is:
468468
@@ -566,7 +566,7 @@ fun main() = runBlocking<Unit> {
566566
567567</div >
568568
569- > You can get full code [ here] ( ../kotlinx-coroutines-core/jvm/test/guide/example-context-10.kt ) .
569+ > You can get the full code [ here] ( ../kotlinx-coroutines-core/jvm/test/guide/example-context-10.kt ) .
570570
571571The output of this example is:
572572
@@ -620,7 +620,7 @@ fun main() = runBlocking<Unit> {
620620
621621</div >
622622
623- > You can get full code [ here] ( ../kotlinx-coroutines-core/jvm/test/guide/example-context-11.kt ) .
623+ > You can get the full code [ here] ( ../kotlinx-coroutines-core/jvm/test/guide/example-context-11.kt ) .
624624
625625In this example we launch a new coroutine in a background thread pool using [ Dispatchers.Default] , so
626626it works on a different thread from the thread pool, but it still has the value of the thread local variable
0 commit comments