class String

Public Instance Methods

unindent(count) click to toggle source
# File lib/jazzy/sourcekitten.rb, line 51
def unindent(count)
  gsub(/^#{' ' * count}/, '')
end