Skip to content

Commit 388c232

Browse files
committed
update: update links
1 parent 7bd93ff commit 388c232

9 files changed

+24
-6
lines changed

docs/cancellation-and-timeouts.md

+1
Original file line numberDiff line numberDiff line change
@@ -443,6 +443,7 @@ This example always prints zero. Resources do not leak.
443443

444444
<!--- MODULE kotlinx-coroutines-core -->
445445
<!--- INDEX kotlinx.coroutines -->
446+
446447
[launch]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/launch.html
447448
[Job]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-job/index.html
448449
[cancelAndJoin]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/cancel-and-join.html

docs/channels.md

+5
Original file line numberDiff line numberDiff line change
@@ -623,11 +623,14 @@ delay between elements.
623623

624624
<!--- MODULE kotlinx-coroutines-core -->
625625
<!--- INDEX kotlinx.coroutines -->
626+
626627
[CoroutineScope]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-scope/index.html
627628
[runBlocking]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/run-blocking.html
628629
[kotlin.coroutines.CoroutineContext.cancelChildren]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/kotlin.coroutines.-coroutine-context/cancel-children.html
629630
[Dispatchers.Default]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-dispatchers/-default.html
631+
630632
<!--- INDEX kotlinx.coroutines.channels -->
633+
631634
[Channel]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.channels/-channel/index.html
632635
[SendChannel.send]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.channels/-send-channel/send.html
633636
[ReceiveChannel.receive]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.channels/-receive-channel/receive.html
@@ -638,6 +641,8 @@ delay between elements.
638641
[ticker]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.channels/ticker.html
639642
[ReceiveChannel.cancel]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.channels/-receive-channel/cancel.html
640643
[TickerMode.FIXED_DELAY]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.channels/-ticker-mode/-f-i-x-e-d_-d-e-l-a-y.html
644+
641645
<!--- INDEX kotlinx.coroutines.selects -->
646+
642647
[select]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.selects/select.html
643648
<!--- END -->

docs/compatibility.md

+3
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,11 @@ For the Maven project, a warning can be disabled by passing a compiler flag in y
116116

117117
<!--- MODULE kotlinx-coroutines-core -->
118118
<!--- INDEX kotlinx.coroutines.flow -->
119+
119120
[Flow]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/-flow/index.html
121+
120122
<!--- INDEX kotlinx.coroutines -->
123+
121124
[ExperimentalCoroutinesApi]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-experimental-coroutines-api/index.html
122125
[FlowPreview]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-flow-preview/index.html
123126
[ObsoleteCoroutinesApi]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-obsolete-coroutines-api/index.html

docs/composing-suspending-functions.md

+1
Original file line numberDiff line numberDiff line change
@@ -391,6 +391,7 @@ Computation failed with ArithmeticException
391391

392392
<!--- MODULE kotlinx-coroutines-core -->
393393
<!--- INDEX kotlinx.coroutines -->
394+
394395
[async]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/async.html
395396
[launch]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/launch.html
396397
[Job]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-job/index.html

docs/coroutine-context-and-dispatchers.md

+1
Original file line numberDiff line numberDiff line change
@@ -652,6 +652,7 @@ that should be implemented.
652652

653653
<!--- MODULE kotlinx-coroutines-core -->
654654
<!--- INDEX kotlinx.coroutines -->
655+
655656
[Job]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-job/index.html
656657
[CoroutineDispatcher]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-dispatcher/index.html
657658
[launch]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/launch.html

docs/coroutines-guide.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ In order to use coroutines as well as follow the examples in this guide, you nee
1717
## Table of contents
1818

1919
* [Basics](basics.md)
20-
* [Cancellation and Timeouts](cancellation-and-timeouts.md)
21-
* [Composing Suspending Functions](composing-suspending-functions.md)
22-
* [Coroutine Context and Dispatchers](coroutine-context-and-dispatchers.md)
20+
* [Cancellation and timeouts](cancellation-and-timeouts.md)
21+
* [Composing suspending functions](composing-suspending-functions.md)
22+
* [Coroutine context and dispatchers](coroutine-context-and-dispatchers.md)
2323
* [Asynchronous Flow](flow.md)
2424
* [Channels](channels.md)
25-
* [Exception Handling and Supervision](exception-handling.md)
26-
* [Shared Mutable State and Concurrency](shared-mutable-state-and-concurrency.md)
27-
* [Select Expression (experimental)](select-expression.md)
25+
* [Exception handling and supervision](exception-handling.md)
26+
* [Shared mutable state and concurrency](shared-mutable-state-and-concurrency.md)
27+
* [Select expression (experimental)](select-expression.md)
2828

2929
## Additional references
3030

docs/debugging.md

+1
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ For more details see ["Optimization" section for Android](../ui/kotlinx-coroutin
9898

9999
<!--- MODULE kotlinx-coroutines-core -->
100100
<!--- INDEX kotlinx.coroutines -->
101+
101102
[DEBUG_PROPERTY_NAME]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-d-e-b-u-g_-p-r-o-p-e-r-t-y_-n-a-m-e.html
102103
[CoroutineName]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-name/index.html
103104
[CopyableThrowable]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-copyable-throwable/index.html

docs/exception-handling.md

+3
Original file line numberDiff line numberDiff line change
@@ -488,6 +488,7 @@ The scope is completed
488488

489489
<!--- MODULE kotlinx-coroutines-core -->
490490
<!--- INDEX kotlinx.coroutines -->
491+
491492
[CancellationException]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-cancellation-exception/index.html
492493
[launch]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/launch.html
493494
[async]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/async.html
@@ -502,7 +503,9 @@ The scope is completed
502503
[Job()]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-job.html
503504
[coroutineScope]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/coroutine-scope.html
504505
[supervisorScope]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/supervisor-scope.html
506+
505507
<!--- INDEX kotlinx.coroutines.channels -->
508+
506509
[actor]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.channels/actor.html
507510
[produce]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.channels/produce.html
508511
[ReceiveChannel.receive]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.channels/-receive-channel/receive.html

docs/flow.md

+3
Original file line numberDiff line numberDiff line change
@@ -1846,6 +1846,7 @@ Integration modules include conversions from and to `Flow`, integration with Rea
18461846

18471847
<!--- MODULE kotlinx-coroutines-core -->
18481848
<!--- INDEX kotlinx.coroutines -->
1849+
18491850
[delay]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/delay.html
18501851
[withTimeoutOrNull]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/with-timeout-or-null.html
18511852
[Dispatchers.Default]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-dispatchers/-default.html
@@ -1859,7 +1860,9 @@ Integration modules include conversions from and to `Flow`, integration with Rea
18591860
[Job.join]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-job/join.html
18601861
[ensureActive]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/ensure-active.html
18611862
[CancellationException]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-cancellation-exception/index.html
1863+
18621864
<!--- INDEX kotlinx.coroutines.flow -->
1865+
18631866
[Flow]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/-flow/index.html
18641867
[flow]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/flow.html
18651868
[FlowCollector.emit]: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/-flow-collector/emit.html

0 commit comments

Comments
 (0)