Skip to content

Commit b7b5731

Browse files
authored
Debugging command warning should not be specific to the debug command (#806)
1 parent a1e431b commit b7b5731

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/irb/cmd/debug.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def execute(pre_cmds: nil, do_cmds: nil)
3131
# 4. Exit the current Irb#run call via `throw :IRB_EXIT`.
3232
# 5. `Irb#debug_break` will be called and trigger the breakpoint, which will run the intended command.
3333
unless binding_irb?
34-
puts "`debug` command is only available when IRB is started with binding.irb"
34+
puts "Debugging commands are only available when IRB is started with binding.irb"
3535
return
3636
end
3737

0 commit comments

Comments
 (0)