diff options
Diffstat (limited to 'lib/optparse.rb')
-rw-r--r-- | lib/optparse.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/optparse.rb b/lib/optparse.rb index 0f92eba8cf..2eedef58bc 100644 --- a/lib/optparse.rb +++ b/lib/optparse.rb @@ -1314,7 +1314,7 @@ XXX # :call-seq: # make_switch(params, block = nil) # - # :include: ../doc/creates_option.rdoc + # :include: ../doc/optparse/creates_option.rdoc # def make_switch(opts, block = nil) short, long, nolong, style, pattern, conv, not_pattern, not_conv, not_style = [], [], [] @@ -1452,7 +1452,7 @@ XXX # :call-seq: # define(*params, &block) # - # :include: ../doc/creates_option.rdoc + # :include: ../doc/optparse/creates_option.rdoc # def define(*opts, &block) top.append(*(sw = make_switch(opts, block))) @@ -1462,7 +1462,7 @@ XXX # :call-seq: # on(*params, &block) # - # :include: ../doc/creates_option.rdoc + # :include: ../doc/optparse/creates_option.rdoc # def on(*opts, &block) define(*opts, &block) @@ -1473,7 +1473,7 @@ XXX # :call-seq: # define_head(*params, &block) # - # :include: ../doc/creates_option.rdoc + # :include: ../doc/optparse/creates_option.rdoc # def define_head(*opts, &block) top.prepend(*(sw = make_switch(opts, block))) @@ -1483,7 +1483,7 @@ XXX # :call-seq: # on_head(*params, &block) # - # :include: ../doc/creates_option.rdoc + # :include: ../doc/optparse/creates_option.rdoc # # The new option is added at the head of the summary. # @@ -1496,7 +1496,7 @@ XXX # :call-seq: # define_tail(*params, &block) # - # :include: ../doc/creates_option.rdoc + # :include: ../doc/optparse/creates_option.rdoc # def define_tail(*opts, &block) base.append(*(sw = make_switch(opts, block))) @@ -1507,7 +1507,7 @@ XXX # :call-seq: # on_tail(*params, &block) # - # :include: ../doc/creates_option.rdoc + # :include: ../doc/optparse/creates_option.rdoc # # The new option is added at the tail of the summary. # |