Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing close backquote #879

Merged
merged 1 commit into from
Dec 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -563,9 +563,9 @@ The `<...>` notation means the argument.
* `u[ntil]`
* Similar to `next` command, but only stop later lines or the end of the current frame.
* Similar to gdb's `advance` command.
* `u[ntil] <[file:]line>
* `u[ntil] <[file:]line>`
* Run til the program reaches given location or the end of the current frame.
* `u[ntil] <name>
* `u[ntil] <name>`
* Run til the program invokes a method `<name>`. `<name>` can be a regexp with `/name/`.
* `c` or `cont` or `continue`
* Resume the program.
Expand Down
4 changes: 2 additions & 2 deletions lib/debug/session.rb
Original file line number Diff line number Diff line change
Expand Up @@ -480,9 +480,9 @@ def register_default_command
# * `u[ntil]`
# * Similar to `next` command, but only stop later lines or the end of the current frame.
# * Similar to gdb's `advance` command.
# * `u[ntil] <[file:]line>
# * `u[ntil] <[file:]line>`
# * Run til the program reaches given location or the end of the current frame.
# * `u[ntil] <name>
# * `u[ntil] <name>`
# * Run til the program invokes a method `<name>`. `<name>` can be a regexp with `/name/`.
register_command 'u', 'until',
repeat: true,
Expand Down