Skip to content

Commit 1e5e89c

Browse files
committed
edit subheading and use id for link
1 parent 0496888 commit 1e5e89c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/pages/learn/01_tutorial/01_your-first-java-app/03_writing-java-applications-with-eclipse.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,9 @@ When running the program, Eclipse should show the output of the program in the `
9494
[![Program with output in console](/assets/images/eclipse/console_output.png)](/assets/images/eclipse/console_output.png)
9595

9696
<a id="debugging">&nbsp;</a>
97-
## Debugging in Eclipse
97+
## Debugging
9898

99-
When a program doesn't do what you expect it to do, you might want to debug it. The process of debugging is explained in [this article](/learn/debugging). Eclipse provides a lot of functionality making it easy to debug Java applications.
99+
When a program doesn't do what you expect it to do, you might want to debug it. The process of debugging is explained in [this article](id:debugging). Eclipse provides a lot of functionality making it easy to debug Java applications.
100100

101101
In order to debug an application, you need to set a breakpoint. When the program gets to executing the line with the breakpoint, it will temporarily stop ("suspend"), allow you to inspect its current state and step through the program. To set a breakpoint, you need to double-click on the area to the left of the line you want to suspend the program at. After doing that, a blue dot should appear there.
102102
[![A breakpoint next to source code](/assets/images/eclipse/breakpoint.png)](/assets/images/eclipse/breakpoint.png)

0 commit comments

Comments
 (0)