Skip to content

Commit e7ddb2d

Browse files
Update coroutines-guide.md (Kotlin#3600)
minor edits
1 parent dea2ca5 commit e7ddb2d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/topics/coroutines-guide.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[//]: # (title: Coroutines guide)
22

3-
Kotlin, as a language, provides only minimal low-level APIs in its standard library to enable various other
3+
Kotlin provides only minimal low-level APIs in its standard library to enable other
44
libraries to utilize coroutines. Unlike many other languages with similar capabilities, `async` and `await`
55
are not keywords in Kotlin and are not even part of its standard library. Moreover, Kotlin's concept
66
of _suspending function_ provides a safer and less error-prone abstraction for asynchronous
77
operations than futures and promises.
88

99
`kotlinx.coroutines` is a rich library for coroutines developed by JetBrains. It contains a number of high-level
10-
coroutine-enabled primitives that this guide covers, including `launch`, `async` and others.
10+
coroutine-enabled primitives that this guide covers, including `launch`, `async`, and others.
1111

12-
This is a guide on core features of `kotlinx.coroutines` with a series of examples, divided up into different topics.
12+
This is a guide about the core features of `kotlinx.coroutines` with a series of examples, divided up into different topics.
1313

1414
In order to use coroutines as well as follow the examples in this guide, you need to add a dependency on the `kotlinx-coroutines-core` module as explained
1515
[in the project README](https://github.com/Kotlin/kotlinx.coroutines/blob/master/README.md#using-in-your-projects).

0 commit comments

Comments
 (0)