Skip to content

Commit 89d43af

Browse files
committed
Dokka links fixed
1 parent 115a139 commit 89d43af

File tree

5 files changed

+14
-2
lines changed

5 files changed

+14
-2
lines changed

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

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ package kotlinx.coroutines
88
* A runnable task for [CoroutineDispatcher.dispatch].
99
*/
1010
public expect interface Runnable {
11+
/**
12+
* @suppress
13+
*/
1114
public fun run()
1215
}
1316

common/kotlinx-coroutines-core-common/src/selects/Select.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,8 @@ public interface SelectInstance<in R> {
163163
* This suspending function is cancellable. If the [Job] of the current coroutine is cancelled or completed while this
164164
* function is suspended, this function immediately resumes with [CancellationException].
165165
*
166-
* Atomicity of cancellation depends on the clause: [onSend][SelectBuilder.onSend], [onReceive][SelectBuilder.onReceive],
167-
* [onReceiveOrNull][SelectBuilder.onReceiveOrNull], and [onLock][SelectBuilder.onLock] clauses are
166+
* Atomicity of cancellation depends on the clause: [onSend][SendChannel.onSend], [onReceive][ReceiveChannel.onReceive],
167+
* [onReceiveOrNull][ReceiveChannel.onReceiveOrNull], and [onLock][Mutex.onLock] clauses are
168168
* *atomically cancellable*. When select throws [CancellationException] it means that those clauses had not performed
169169
* their respective operations.
170170
* As a side-effect of atomic cancellation, a thread-bound coroutine (to some UI thread, for example) may

core/kotlinx-coroutines-core/src/internal/MainDispatchers.kt

+3
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,9 @@ private class MissingMainCoroutineDispatcher(
8181
override fun toString(): String = "Main[missing${if (cause != null) ", cause=$cause" else ""}]"
8282
}
8383

84+
/**
85+
* @suppress
86+
*/
8487
@InternalCoroutinesApi
8588
public object MissingMainCoroutineDispatcherFactory : MainDispatcherFactory {
8689
override val loadPriority: Int

js/kotlinx-coroutines-core-js/src/Runnable.kt

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ package kotlinx.coroutines
88
* A runnable task for [CoroutineDispatcher.dispatch].
99
*/
1010
public actual interface Runnable {
11+
/**
12+
* @suppress
13+
*/
1114
public actual fun run()
1215
}
1316

native/kotlinx-coroutines-core-native/src/Runnable.kt

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ package kotlinx.coroutines
88
* A runnable task for [CoroutineDispatcher.dispatch].
99
*/
1010
public actual interface Runnable {
11+
/**
12+
* @suppress
13+
*/
1114
public actual fun run()
1215
}
1316

0 commit comments

Comments
 (0)