lib/byebug/commands/interrupt.rb in byebug-3.2.0 vs lib/byebug/commands/interrupt.rb in byebug-3.3.0

- old
+ new

@@ -1,6 +1,9 @@ module Byebug + # + # Interrupting execution of current thread. + # class InterruptCommand < Command self.allow_in_control = true self.allow_in_post_mortem = false def regexp @@ -16,10 +19,10 @@ def names %w(interrupt) end def description - %{i|nterrupt\t interrupt the program} + %(i|nterrupt Interrupts the program.) end end end end