Skip to content

Commit 0f17703

Browse files
easternkitefzhinkin
authored andcommitted
Fix broken link in coroutines.md
1 parent 4a82df7 commit 0f17703

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

proposals/coroutines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -759,7 +759,7 @@ fun <T> sequence(block: suspend SequenceScope<T>.() -> Unit): Sequence<T> = Sequ
759759
760760
It uses a different primitive from the standard library called
761761
[`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).
762+
which is similar to `startCoroutine` (that was explained in [coroutine builders](#coroutine-builders) section).
763763
However it _creates_ a coroutine, but does _not_ start it.
764764
Instead, it returns its _initial continuation_ as a reference to `Continuation<Unit>`:
765765

0 commit comments

Comments
 (0)