We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a82df7 commit 0f17703Copy full SHA for 0f17703
proposals/coroutines.md
@@ -759,7 +759,7 @@ fun <T> sequence(block: suspend SequenceScope<T>.() -> Unit): Sequence<T> = Sequ
759
760
It uses a different primitive from the standard library called
761
[`createCoroutine`](http://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/create-coroutine.html)
762
-which is similar to `startCoroutine` (that was explained in [coroutine builders](coroutine-builders) section).
+which is similar to `startCoroutine` (that was explained in [coroutine builders](#coroutine-builders) section).
763
However it _creates_ a coroutine, but does _not_ start it.
764
Instead, it returns its _initial continuation_ as a reference to `Continuation<Unit>`:
765
0 commit comments