Skip to content

Commit b7e08b8

Browse files
authored
Fix bad link in debug-coroutines-with-idea.md (#2634)
Fix invalid link to api doc for `println()` function.
1 parent 5eca49c commit b7e08b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/topics/debug-coroutines-with-idea.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The tutorial assumes you have prior knowledge of the [coroutines](coroutines-gui
2121
* Use the [`runBlocking()`](https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/run-blocking.html) block to wrap a coroutine.
2222
* Use the [`async()`](https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/async.html) function to create coroutines that compute deferred values `a` and `b`.
2323
* Use the [`await()`](https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-deferred/await.html) function to await the computation result.
24-
* Use the [`println()`](https://kotlinlang.org//api/latest/jvm/stdlib/stdlib/kotlin.io/println.html) function to print computing status and the result of multiplication to the output.
24+
* Use the [`println()`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.io/println.html) function to print computing status and the result of multiplication to the output.
2525

2626
```kotlin
2727
import kotlinx.coroutines.*
@@ -79,4 +79,4 @@ The tutorial assumes you have prior knowledge of the [coroutines](coroutines-gui
7979
* The second coroutine has computed its value and disappeared.
8080
* The third coroutine is calculating the value of `b` – it has the **RUNNING** status.
8181

82-
Using IntelliJ IDEA debugger, you can dig deeper into each coroutine to debug your code.
82+
Using IntelliJ IDEA debugger, you can dig deeper into each coroutine to debug your code.

0 commit comments

Comments
 (0)