Skip to content

Commit d54a2d1

Browse files
easternkitenikitabobko
authored andcommitted
Fix broken link in coroutines.md
closes #420
1 parent c23d883 commit d54a2d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

proposals/KEEP-0164-coroutines.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1549,10 +1549,10 @@ It is very convenient to write cooperative single-threaded applications, because
15491549
deal with concurrency and shared mutable state. JS, Python and many other languages do
15501550
not have threads, but have cooperative multitasking primitives.
15511551

1552-
[Coroutine interceptor](#coroutine-interceptor) provides a straightforward tool to ensure that
1552+
[Continuation interceptor](#continuation-interceptor) provides a straightforward tool to ensure that
15531553
all coroutines are confined to a single thread. The example code
15541554
[here](https://github.com/kotlin/kotlin-coroutines-examples/tree/master/examples/context/threadContext.kt) defines `newSingleThreadContext()` function that
1555-
creates a single-threaded execution services and adapts it to the coroutine interceptor
1555+
creates a single-threaded execution services and adapts it to the continuation interceptor
15561556
requirements.
15571557

15581558
We will use it with `future{}` coroutine builder that was defined in [building futures](#building-futures) section

0 commit comments

Comments
 (0)