Skip to content
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ The `<...>` notation means the argument.
* `q[uit]!`
* Same as q[uit] but without the confirmation prompt.
* `kill`
* Stop the debuggee process with `Kernal#exit!`.
* Stop the debuggee process with `Kernel#exit!`.
* `kill!`
* Same as kill but without the confirmation prompt.
* `sigint`
Expand Down
2 changes: 1 addition & 1 deletion lib/debug/session.rb
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ def process_command line
leave_subsession nil

# * `kill`
# * Stop the debuggee process with `Kernal#exit!`.
# * Stop the debuggee process with `Kernel#exit!`.
when 'kill'
if ask 'Really kill?'
exit! (arg || 1).to_i
Expand Down