Skip to content

Commit 73f46cf

Browse files
committed
Merge branch 'master' into develop
2 parents 95b7a13 + 0fcd1d8 commit 73f46cf

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

docs/kc.tree

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

33
<!DOCTYPE product-profile
4-
SYSTEM "http://helpserver.labs.intellij.net/help/product-profile.dtd">
4+
SYSTEM "https://resources.jetbrains.com/stardust/product-profile.dtd">
55

66
<product-profile id="kc"
77
name="Kotlin coroutines"
88
start-page="coroutines-guide.md">
99

1010
<toc-element id="coroutines-guide.md"/>
1111
<toc-element id="async-programming.md"/>
12-
<toc-element id="coroutines-basics.md"/>
13-
<toc-element id="coroutines-basic-jvm.md"/>
12+
<toc-element id="coroutines-basics.md" accepts-web-file-names="basics.html,coroutines-basic-jvm.html"/>
1413
<toc-element toc-title="Intro to coroutines and channels – hands-on tutorial" href="https://play.kotlinlang.org/hands-on/Introduction%20to%20Coroutines%20and%20Channels/"/>
1514
<toc-element id="cancellation-and-timeouts.md"/>
1615
<toc-element id="composing-suspending-functions.md"/>

docs/project.ihp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<!DOCTYPE ihp SYSTEM "http://helpserver.labs.intellij.net/help/ihp.dtd">
2+
<!DOCTYPE ihp SYSTEM "https://resources.jetbrains.com/stardust/ihp.dtd">
33

44
<ihp version="2.0">
55
<categories src="c.list"/>

docs/topics/compatibility.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ It is done in order to produce compilation warning about using experimental or o
8080
Warnings can be disabled either programmatically for a specific call site or globally for the whole module.
8181

8282
### Programmatically
83-
For a specific call-site, warning can be disabled by using [UseExperimental](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-use-experimental/index.html) annotation:
83+
For a specific call-site, warning can be disabled by using [OptIn](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-opt-in/) annotation:
8484
```kotlin
85-
@UseExperimental(ExperimentalCoroutinesApi::class) // Disables warning about experimental coroutines API
85+
@OptIn(ExperimentalCoroutinesApi::class) // Disables warning about experimental coroutines API
8686
fun experimentalApiUsage() {
8787
someKotlinxCoroutinesExperimentalMethod()
8888
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ public val CoroutineScope.isActive: Boolean
163163
*
164164
* ### Possible replacements
165165
*
166-
* In may cases uses of `GlobalScope` should be removed, marking the containing operation with `suspend`, for example:
166+
* In many cases uses of `GlobalScope` should be removed, marking the containing operation with `suspend`, for example:
167167
*
168168
* ```
169169
* suspend fun loadConfiguration() {

0 commit comments

Comments
 (0)