mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
Merge pull request #1063 from yui-knk/change-ls-option-description
Add 'public' to description of :M option in ls command.
This commit is contained in:
commit
75ec4fc5b7
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ class Pry
|
|||
|
||||
def options(opt)
|
||||
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 :M, "instance-methods", "Show public 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"
|
||||
opt.on :v, :verbose, "Show methods and constants on all super-classes (ignores Pry.config.ls.ceiling)"
|
||||
|
|
Loading…
Reference in a new issue