Method: YARD::Templates::Helpers::TextHelper#hr

Defined in:
lib/yard/templates/helpers/text_helper.rb

#hr(col = 72, sep = "-") ⇒ String

Returns a horizontal rule for output

Returns:

  • (String)

    returns a horizontal rule for output


43
44
45
# File 'lib/yard/templates/helpers/text_helper.rb', line 43

def hr(col = 72, sep = "-")
  sep * col
end