1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00

delete '(default)' from pry/commands/ls.rb#options, because option'm' is not default

This commit is contained in:
yui-knk 2013-12-12 23:32:09 +09:00
parent 5016a0b0c1
commit 0adb792546

View file

@ -28,7 +28,7 @@ class Pry
def options(opt)
opt.on :m, :methods, "Show public methods defined on the Object (default)"
opt.on :m, :methods, "Show public methods defined on the Object"
opt.on :M, "instance-methods", "Show methods defined in a Module or Class"
opt.on :p, :ppp, "Show public, protected (in yellow) and private (in green) methods"
opt.on :q, :quiet, "Show only methods defined on object.singleton_class and object.class"