diff options
author | Kyrylo Silin <silin@kyrylo.org> | 2018-10-13 03:20:08 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-13 03:20:08 +0800 |
commit | e7f01818d36e92c883beb251badb045e5cdaefa7 (patch) | |
tree | 42db65f6de53c1d74de1a52d50d1a546dc9fdcd6 /lib/pry/commands/raise_up.rb | |
parent | 4f121a6a07a94dd5f7a71e75a406147d9d21568d (diff) | |
parent | f33d82779a6ecbadc6a6deb196d4477829500b1b (diff) | |
download | pry-e7f01818d36e92c883beb251badb045e5cdaefa7.tar.gz |
Merge pull request #1798 from pry/rubocop-style-hash-syntax
rubocop: fix offences of the Style/HashSyntax cop
Diffstat (limited to 'lib/pry/commands/raise_up.rb')
-rw-r--r-- | lib/pry/commands/raise_up.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pry/commands/raise_up.rb b/lib/pry/commands/raise_up.rb index 70ad0872..53475c6b 100644 --- a/lib/pry/commands/raise_up.rb +++ b/lib/pry/commands/raise_up.rb @@ -4,7 +4,7 @@ class Pry match(/raise-up(!?\b.*)/) group 'Context' description 'Raise an exception out of the current pry instance.' - command_options :listing => 'raise-up' + command_options listing: 'raise-up' banner <<-BANNER Raise up, like exit, allows you to quit pry. Instead of returning a value |