You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/topics/whatsnew/whatsnew11.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ patterns. The key feature of Kotlin's design is that the implementation of corou
23
23
not the language, so you aren't bound to any specific programming paradigm or concurrency library.
24
24
25
25
A coroutine is effectively a light-weight thread that can be suspended and resumed later.
26
-
Coroutines are supported through _[suspending functions](coroutines-basics.md#extract-function-refactoring)_:
26
+
Coroutines are supported through _[suspending functions](coroutines-basics.md)_:
27
27
a call to such a function can potentially suspend a coroutine, and to start a new coroutine we usually use an anonymous suspending functions (i.e. suspending lambdas).
28
28
29
29
Let's look at `async`/`await` which is implemented in an external library, [kotlinx.coroutines](https://github.com/kotlin/kotlinx.coroutines):
0 commit comments