Skip to content

Commit 8a21e4b

Browse files
authored
Update coroutines-basics.md (Kotlin#3494)
* Fix typo
1 parent 2319be0 commit 8a21e4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/topics/coroutines-basics.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ the code with coroutines inside of `runBlocking { ... }` curly braces. This is h
5757
`this: CoroutineScope` hint right after the `runBlocking` opening curly brace.
5858

5959
If you remove or forget `runBlocking` in this code, you'll get an error on the [launch] call, since `launch`
60-
is declared only in the [CoroutineScope]:
60+
is declared only on the [CoroutineScope]:
6161

6262
```Plain Text
6363
Unresolved reference: launch

0 commit comments

Comments
 (0)