Skip to content

Commit f8935d4

Browse files
committed
update: new screenshots and UI changes for IDEA 2021.3
1 parent 3574c2f commit f8935d4

7 files changed

+5
-5
lines changed

docs/images/coroutine-breakpoint.png

9.13 KB
Loading
78.5 KB
Loading

docs/images/flow-breakpoint.png

2.76 KB
Loading

docs/images/flow-build-project.png

25.1 KB
Loading

docs/images/flow-debug-project.png

35.1 KB
Loading

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ The tutorial assumes you have prior knowledge of the [coroutines](coroutines-gui
6161

6262
![Debug the coroutine](coroutine-debug-1.png)
6363

64-
3. Resume the debugger session by clicking **Resume program** in the **Debug** tool window:
64+
3. Resume the debugger session by clicking **Resume Program** in the **Debug** tool window:
6565

6666
![Debug the coroutine](coroutine-debug-2.png)
6767

@@ -70,7 +70,7 @@ The tutorial assumes you have prior knowledge of the [coroutines](coroutines-gui
7070
* The second coroutine is calculating the `a` value – it has the **RUNNING** status.
7171
* The third coroutine has the **CREATED** status and isn’t calculating the value of `b`.
7272

73-
4. Resume the debugger session by clicking **Resume program** in the **Debug** tool window:
73+
4. Resume the debugger session by clicking **Resume Program** in the **Debug** tool window:
7474

7575
![Build a console application](coroutine-debug-3.png)
7676

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Create a Kotlin [flow](https://kotlin.github.io/kotlinx.coroutines/kotlinx-corou
5959

6060
## Debug the coroutine
6161

62-
1. Set a breakpoint at the at the line where the `emit()` function is called:
62+
1. Set a breakpoint at the line where the `emit()` function is called:
6363

6464
![Build a console application](flow-breakpoint.png)
6565

@@ -74,7 +74,7 @@ Create a Kotlin [flow](https://kotlin.github.io/kotlinx.coroutines/kotlinx-corou
7474

7575
![Debug the coroutine](flow-debug-1.png)
7676

77-
3. Resume the debugger session by clicking **Resume program** in the **Debug** tool window. The program stops at the same breakpoint.
77+
3. Resume the debugger session by clicking **Resume Program** in the **Debug** tool window. The program stops at the same breakpoint.
7878

7979
![Debug the coroutine](flow-resume-debug.png)
8080

@@ -117,7 +117,7 @@ Create a Kotlin [flow](https://kotlin.github.io/kotlinx.coroutines/kotlinx-corou
117117
The `buffer()` function buffers emitted values from the flow.
118118
The emitter coroutine has the **RUNNING** status, and the collector coroutine has the **SUSPENDED** status.
119119

120-
2. Resume the debugger session by clicking **Resume program** in the **Debug** tool window.
120+
2. Resume the debugger session by clicking **Resume Program** in the **Debug** tool window.
121121

122122
![Debugging coroutines](flow-debug-4.png)
123123

0 commit comments

Comments
 (0)