@@ -16,10 +16,10 @@ import kotlin.coroutines.*
16
16
*
17
17
* The following methods are available for override:
18
18
*
19
- * * [onStart] is invoked when the coroutine was created in non-active state and is being [started][Job.start].
20
- * * [onCancelling] is invoked as soon as the coroutine starts being cancelled for any reason (or completes).
21
- * * [onCompleted] is invoked when the coroutine completes with a value.
22
- * * [onCancelled] in invoked when the coroutine completes with an exception (cancelled).
19
+ * - [onStart] is invoked when the coroutine was created in non-active state and is being [started][Job.start].
20
+ * - [onCancelling] is invoked as soon as the coroutine starts being cancelled for any reason (or completes).
21
+ * - [onCompleted] is invoked when the coroutine completes with a value.
22
+ * - [onCancelled] in invoked when the coroutine completes with an exception (cancelled).
23
23
*
24
24
* @param parentContext the context of the parent coroutine.
25
25
* @param initParentJob specifies whether the parent-child relationship should be instantiated directly
@@ -114,10 +114,10 @@ public abstract class AbstractCoroutine<in T>(
114
114
* Starts this coroutine with the given code [block] and [start] strategy.
115
115
* This function shall be invoked at most once on this coroutine.
116
116
*
117
- * * [DEFAULT] uses [startCoroutineCancellable].
118
- * * [ATOMIC] uses [startCoroutine].
119
- * * [UNDISPATCHED] uses [startCoroutineUndispatched].
120
- * * [LAZY] does nothing.
117
+ * - [DEFAULT] uses [startCoroutineCancellable].
118
+ * - [ATOMIC] uses [startCoroutine].
119
+ * - [UNDISPATCHED] uses [startCoroutineUndispatched].
120
+ * - [LAZY] does nothing.
121
121
*/
122
122
public fun <R > start (start : CoroutineStart , receiver : R , block : suspend R .() -> T ) {
123
123
start(block, receiver, this )
0 commit comments