Skip to content

Commit c7b2743

Browse files
robriksAniket-Engg
authored andcommitted
Finished an incomplete section + typo fix
Explaination - > explanation Wrote brief blurbs on the capabilities of the debugger stepping buttons, all of which were previously incomplete/missing.
1 parent b1b033e commit c7b2743

File tree

1 file changed

+19
-6
lines changed

1 file changed

+19
-6
lines changed

docs/tutorial_debug.md

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -124,12 +124,25 @@ The navigation part contains a slider and buttons that can be used to
124124
step through the transaction execution.
125125

126126

127-
### More explaination of what these buttons do.
128-
1. Step Into
129-
2. Step Over Into
130-
131-
132-
11 panels give detailed information about the execution:
127+
### Explanation of Debugger button capabilities
128+
129+
1. Step Over Back
130+
Returns to the previous step, but ignores/steps over function calls: the debugger WILL NOT enter a function
131+
2. Step Back
132+
Returns to the previous step. Does not ignore function calls: the debugger WILL enter any function along the way
133+
3. Step Into
134+
Forwards to the next step. Does not ignore function calls: the debugger WILL enter any function along the way
135+
4. Step Over Forward
136+
Forwards to the next step, but ignores/steps over function calls: the debugger WILL NOT enter a function
137+
5. Jump to the Previous Breakpoint
138+
Sends the debugger to the last visited breakpoint. Note that breakpoints may be set by clicking the line number in source code
139+
6. Jump Out
140+
Sends the debugger to the function's end
141+
7. Jump to the Next Breakpoint
142+
Sends the debugger to the next breakpoint
143+
144+
145+
## 11 panels give detailed information about the execution:
133146

134147
### Instructions
135148

0 commit comments

Comments
 (0)