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

Merge pull request #1042 from yui-knk/FixLsCommandComment

delete '(default)' from pry/commands/ls.rb#options, because option'm' is...
This commit is contained in:
Kyrylo Silin 2013-12-12 06:35:27 -08:00
commit 53b3c5f75b

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"