@@ -16,10 +16,10 @@ import kotlin.coroutines.*
1616 *
1717 * The following methods are available for override:
1818 *
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).
2323 *
2424 * @param parentContext the context of the parent coroutine.
2525 * @param initParentJob specifies whether the parent-child relationship should be instantiated directly
@@ -114,10 +114,10 @@ public abstract class AbstractCoroutine<in T>(
114114 * Starts this coroutine with the given code [block] and [start] strategy.
115115 * This function shall be invoked at most once on this coroutine.
116116 *
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.
121121 */
122122 public fun <R > start (start : CoroutineStart , receiver : R , block : suspend R .() -> T ) {
123123 start(block, receiver, this )
0 commit comments