Skip to content

Commit e963ede

Browse files
committed
Merge branch 'master' into develop
2 parents 9da9485 + 06e85d5 commit e963ede

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,9 @@ And make sure that you use the latest Kotlin version:
8585
Add dependencies (you can also add other modules that you need):
8686

8787
```groovy
88-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.30.1'
88+
dependencies {
89+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.30.1'
90+
}
8991
```
9092

9193
And make sure that you use the latest Kotlin version:

docs/coroutines-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Kotlin, as a language, provides only minimal low-level APIs in its standard library to enable various other
33
libraries to utilize coroutines. Unlike many other languages with similar capabilities, `async` and `await`
44
are not keywords in Kotlin and are not even part of its standard library. Moreover, Kotlin's concept
5-
of _suspending function_ provides a safer and less error-prone abstraction for for asynchronous
5+
of _suspending function_ provides a safer and less error-prone abstraction for asynchronous
66
operations than futures and promises.
77

88
`kotlinx.coroutines` is a rich library for coroutines developed by JetBrains. It contains a number of high-level
@@ -29,4 +29,4 @@ In order to use coroutines as well as follow the examples in this guide, you nee
2929
* [Guide to UI programming with coroutines](../ui/coroutines-guide-ui.md)
3030
* [Guide to reactive streams with coroutines](../reactive/coroutines-guide-reactive.md)
3131
* [Coroutines design document (KEEP)](https://github.com/Kotlin/kotlin-coroutines/blob/master/kotlin-coroutines-informal.md)
32-
* [Full kotlinx.coroutines API reference](http://kotlin.github.io/kotlinx.coroutines)
32+
* [Full kotlinx.coroutines API reference](http://kotlin.github.io/kotlinx.coroutines)

0 commit comments

Comments
 (0)