diff --git a/kotlinx-coroutines-core/common/src/Timeout.kt b/kotlinx-coroutines-core/common/src/Timeout.kt index 930b39ccc0..c63136575b 100644 --- a/kotlinx-coroutines-core/common/src/Timeout.kt +++ b/kotlinx-coroutines-core/common/src/Timeout.kt @@ -27,7 +27,7 @@ import kotlin.time.Duration.Companion.milliseconds * even right before the return from inside the timeout [block]. Keep this in mind if you open or acquire some * resource inside the [block] that needs closing or release outside the block. * See the - * [Asynchronous timeout and resources][https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources] + * [Asynchronous timeout and resources](https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources) * section of the coroutines guide for details. * * > Implementation note: how the time is tracked exactly is an implementation detail of the context's [CoroutineDispatcher]. @@ -59,7 +59,7 @@ public suspend fun withTimeout(timeMillis: Long, block: suspend CoroutineSco * even right before the return from inside the timeout [block]. Keep this in mind if you open or acquire some * resource inside the [block] that needs closing or release outside the block. * See the - * [Asynchronous timeout and resources][https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources] + * [Asynchronous timeout and resources](https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources) * section of the coroutines guide for details. * * > Implementation note: how the time is tracked exactly is an implementation detail of the context's [CoroutineDispatcher]. @@ -86,7 +86,7 @@ public suspend fun withTimeout(timeout: Duration, block: suspend CoroutineSc * even right before the return from inside the timeout [block]. Keep this in mind if you open or acquire some * resource inside the [block] that needs closing or release outside the block. * See the - * [Asynchronous timeout and resources][https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources] + * [Asynchronous timeout and resources](https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources) * section of the coroutines guide for details. * * > Implementation note: how the time is tracked exactly is an implementation detail of the context's [CoroutineDispatcher]. @@ -127,7 +127,7 @@ public suspend fun withTimeoutOrNull(timeMillis: Long, block: suspend Corout * even right before the return from inside the timeout [block]. Keep this in mind if you open or acquire some * resource inside the [block] that needs closing or release outside the block. * See the - * [Asynchronous timeout and resources][https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources] + * [Asynchronous timeout and resources](https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources) * section of the coroutines guide for details. * * > Implementation note: how the time is tracked exactly is an implementation detail of the context's [CoroutineDispatcher]. diff --git a/reactive/README.md b/reactive/README.md index 35706ac96e..d7f234c769 100644 --- a/reactive/README.md +++ b/reactive/README.md @@ -7,5 +7,5 @@ Module name below corresponds to the artifact name in Maven/Gradle. * [kotlinx-coroutines-reactive](kotlinx-coroutines-reactive/README.md) -- utilities for [Reactive Streams](https://www.reactive-streams.org) * [kotlinx-coroutines-reactor](kotlinx-coroutines-reactor/README.md) -- utilities for [Reactor](https://projectreactor.io) -* [kotlinx-coroutines-rx2](kotlinx-coroutines-rx2/README.md) -- utilities for [RxJava 2.x](https://github.com/ReactiveX/RxJava) +* [kotlinx-coroutines-rx2](kotlinx-coroutines-rx2/README.md) -- utilities for [RxJava 2.x](https://github.com/ReactiveX/RxJava/tree/2.x) * [kotlinx-coroutines-rx3](kotlinx-coroutines-rx3/README.md) -- utilities for [RxJava 3.x](https://github.com/ReactiveX/RxJava)