summaryrefslogtreecommitdiff
path: root/lib/optparse.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/optparse.rb')
-rw-r--r--lib/optparse.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/optparse.rb b/lib/optparse.rb
index dc4564a4c5..c92af70c98 100644
--- a/lib/optparse.rb
+++ b/lib/optparse.rb
@@ -629,7 +629,7 @@ Default options, which never appear in option summary.
end
end
def inc(*args)
- type.inc(*args)
+ self.class.inc(*args)
end
=begin
@@ -663,7 +663,7 @@ Default options, which never appear in option summary.
string pushed back to be first non-option argument
=end #'#"#`#
def terminate(arg = nil)
- type.terminate(arg)
+ self.class.terminate(arg)
end
def self.terminate(arg = nil)
throw :terminate, arg
@@ -1422,11 +1422,11 @@ Base class of exceptions from ((<OptionParser>))
end
def reason
- @reason || self.type::Reason
+ @reason || self.class::Reason
end
def inspect
- '#<' + type.to_s + ': ' + args.join(' ') + '>'
+ "#<#{self.class.to_s}: #{args.join(' ')}>"
end
def message