Skip to content

Commit 75059ca

Browse files
authored
Fix markdown list formatting in help output. (#320)
1 parent 296e303 commit 75059ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ function execute_command(state::DebuggerState, ::Union{Val{:help}, Val{:?}}, cmd
251251
- `u [i::Int]`: step until line `i` or the next line past the current line\\
252252
- `s`: step into the next call\\
253253
- `so`: step out of the current call\\
254-
- `sl`: step into the last call on the current line (e.g. steps into `f` if the line is `f(g(h(x)))`).
254+
- `sl`: step into the last call on the current line (e.g. steps into `f` if the line is `f(g(h(x)))`).\\
255255
- `c`: continue execution until a breakpoint is hit\\
256256
- `f [i::Int]`: go to the `i`-th function in the call stack (stepping is only possible in the function at the top of the call stack)\\
257257
- `up/down [i::Int]` go up or down one or `i` functions in the call stack\\

0 commit comments

Comments
 (0)