Skip to content

Commit 41b1e41

Browse files
committed
add missing period
1 parent 2dea8b0 commit 41b1e41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/pages/learn/01_tutorial/08_more-resources/02_debugging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ When the debugger stops on line 5, I see that `part2` is the seven that I expect
8484
There are a number of reasons why you might want to use a debugger. Three of the most common are:
8585

8686
1. Fixing broken code - The debugger allows you to see the values of variables as the code runs. This allows you to see where it stops behaving as expected.
87-
2. Understanding unfamiliar code - Watching the values of each variable as the code runs can help you understand it better
87+
2. Understanding unfamiliar code - Watching the values of each variable as the code runs can help you understand it better.
8888
3. Tracing the path of the code - When stopping at a breakpoint, the debugger shows what classes/methods were called in order to get there. You can even click on them to see what the variables in scope at those points are.
8989

9090
<a id="basic">&nbsp;</a>

0 commit comments

Comments
 (0)