module Hippo_eyeDoc::Outputters::PrettyString::Segment

Public Instance Methods

to_pretty_string(indent_level = 0) click to toggle source
# File lib/hippo_eyeDoc/outputters/pretty_string.rb, line 40
def to_pretty_string(indent_level = 0)
  ' ' * indent_level + to_s + "\n"
end