Skip to content

Commit e7a0723

Browse files
medavoxelizarov
authored andcommitted
fix grammar typo
removed repeated 'for'
1 parent f6e5742 commit e7a0723

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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)