diff options
| author | Stan Lo <stan001212@gmail.com> | 2023-12-07 16:09:09 +0000 |
|---|---|---|
| committer | git <svn-admin@ruby-lang.org> | 2023-12-07 16:09:15 +0000 |
| commit | 5809b75019dd3a253bb0e45c37bbf0cca0400911 (patch) | |
| tree | f8461372da003920e1193cd46d196a60ae47e02c /lib | |
| parent | c05278e425a7b7cadf0bf299ecfbe0ae9525c75c (diff) | |
[ruby/irb] Debugging command warning should not be specific to the
`debug` command
(https://github.com/ruby/irb/pull/806)
https://github.com/ruby/irb/commit/b7b57311cc
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/irb/cmd/debug.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/irb/cmd/debug.rb b/lib/irb/cmd/debug.rb index 9eca964218..e236084ca4 100644 --- a/lib/irb/cmd/debug.rb +++ b/lib/irb/cmd/debug.rb @@ -31,7 +31,7 @@ module IRB # 4. Exit the current Irb#run call via `throw :IRB_EXIT`. # 5. `Irb#debug_break` will be called and trigger the breakpoint, which will run the intended command. unless binding_irb? - puts "`debug` command is only available when IRB is started with binding.irb" + puts "Debugging commands are only available when IRB is started with binding.irb" return end |
