Skip to content

Commit 8a923ba

Browse files
mikayelgrpablobaxter
authored andcommitted
Fixed a typo. (Kotlin#3121)
Fixed a typo in the documentation of `GlobalScope`. Changed `coroutinesScope` to `coroutineScope`
1 parent 6c99fea commit 8a923ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kotlinx-coroutines-core/common/src/CoroutineScope.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ public val CoroutineScope.isActive: Boolean
178178
* ```
179179
* // concurrently load configuration and data
180180
* suspend fun loadConfigurationAndData() {
181-
* coroutinesScope {
181+
* coroutineScope {
182182
* launch { loadConfiguration() }
183183
* launch { loadData() }
184184
* }

0 commit comments

Comments
 (0)