# File lib/facet/date/to_s.rb, line 3
  def to_s(format = nil)
    case format
    when :short
      strftime("%e %b").strip
    when :long
      strftime("%B %e, %Y").strip
    else
      stamp
    end
  end