Skip to content

Commit 4801c65

Browse files
committed
Merge remote-tracking branch 'origin/master' into develop
2 parents cc34948 + 20c845e commit 4801c65

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

kotlinx-coroutines-core/common/src/Timeout.kt

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import kotlin.time.Duration.Companion.milliseconds
2727
* even right before the return from inside the timeout [block]. Keep this in mind if you open or acquire some
2828
* resource inside the [block] that needs closing or release outside the block.
2929
* See the
30-
* [Asynchronous timeout and resources][https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources]
30+
* [Asynchronous timeout and resources](https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources)
3131
* section of the coroutines guide for details.
3232
*
3333
* > Implementation note: how the time is tracked exactly is an implementation detail of the context's [CoroutineDispatcher].
@@ -59,7 +59,7 @@ public suspend fun <T> withTimeout(timeMillis: Long, block: suspend CoroutineSco
5959
* even right before the return from inside the timeout [block]. Keep this in mind if you open or acquire some
6060
* resource inside the [block] that needs closing or release outside the block.
6161
* See the
62-
* [Asynchronous timeout and resources][https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources]
62+
* [Asynchronous timeout and resources](https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources)
6363
* section of the coroutines guide for details.
6464
*
6565
* > Implementation note: how the time is tracked exactly is an implementation detail of the context's [CoroutineDispatcher].
@@ -86,7 +86,7 @@ public suspend fun <T> withTimeout(timeout: Duration, block: suspend CoroutineSc
8686
* even right before the return from inside the timeout [block]. Keep this in mind if you open or acquire some
8787
* resource inside the [block] that needs closing or release outside the block.
8888
* See the
89-
* [Asynchronous timeout and resources][https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources]
89+
* [Asynchronous timeout and resources](https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources)
9090
* section of the coroutines guide for details.
9191
*
9292
* > Implementation note: how the time is tracked exactly is an implementation detail of the context's [CoroutineDispatcher].
@@ -127,7 +127,7 @@ public suspend fun <T> withTimeoutOrNull(timeMillis: Long, block: suspend Corout
127127
* even right before the return from inside the timeout [block]. Keep this in mind if you open or acquire some
128128
* resource inside the [block] that needs closing or release outside the block.
129129
* See the
130-
* [Asynchronous timeout and resources][https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources]
130+
* [Asynchronous timeout and resources](https://kotlinlang.org/docs/reference/coroutines/cancellation-and-timeouts.html#asynchronous-timeout-and-resources)
131131
* section of the coroutines guide for details.
132132
*
133133
* > Implementation note: how the time is tracked exactly is an implementation detail of the context's [CoroutineDispatcher].

reactive/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ Module name below corresponds to the artifact name in Maven/Gradle.
77

88
* [kotlinx-coroutines-reactive](kotlinx-coroutines-reactive/README.md) -- utilities for [Reactive Streams](https://www.reactive-streams.org)
99
* [kotlinx-coroutines-reactor](kotlinx-coroutines-reactor/README.md) -- utilities for [Reactor](https://projectreactor.io)
10-
* [kotlinx-coroutines-rx2](kotlinx-coroutines-rx2/README.md) -- utilities for [RxJava 2.x](https://github.com/ReactiveX/RxJava)
10+
* [kotlinx-coroutines-rx2](kotlinx-coroutines-rx2/README.md) -- utilities for [RxJava 2.x](https://github.com/ReactiveX/RxJava/tree/2.x)
1111
* [kotlinx-coroutines-rx3](kotlinx-coroutines-rx3/README.md) -- utilities for [RxJava 3.x](https://github.com/ReactiveX/RxJava)

0 commit comments

Comments
 (0)