[ruby/optparse] Fix relative paths

https://github.com/ruby/optparse/commit/8be031b539
This commit is contained in:
Nobuyoshi Nakada 2021-04-11 08:49:30 +09:00
parent bd7430c7aa
commit cb01437c24
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
Creates an option from the given parameters +params+. Creates an option from the given parameters +params+.
See {Parameters for New Options}[doc/option_params_rdoc.html]. See {Parameters for New Options}[./option_params_rdoc.html].
The block, if given, is the handler for the created option. The block, if given, is the handler for the created option.
When the option is encountered during command-line parsing, When the option is encountered during command-line parsing,
the block is called with the argument given for the option, if any. the block is called with the argument given for the option, if any.
See {Option Handlers}[doc/option_params_rdoc.html#label-Option+Handlers]. See {Option Handlers}[./option_params_rdoc.html#label-Option+Handlers].