lib/rprogram/option.rb in rprogram-0.1.8 vs lib/rprogram/option.rb in rprogram-0.2.0

- old
+ new

@@ -27,17 +27,17 @@ # # @option options [String] :flag # The command-line flag to use. # # @option options [true, false] :equals (false) - # Implies the option maybe formated as <tt>"--flag=value"</tt>. + # Implies the option maybe formated as `--flag=value`. # # @option options [true, false] :multiple (false) # Specifies the option maybe given an Array of values. # # @option options [String] :separator # The separator to use for formating multiple arguments into one - # +String+. Cannot be used with the +:multiple+ option. + # `String`. Cannot be used with the `:multiple` option. # # @option options [true, false] :sub_options (false) # Specifies that the option contains sub-options. # # @yield [option, value]