class Chronic::Span

def to_s

Prints this span in a nice fashion
def to_s
  '(' << self.begin.to_s << '..' << self.end.to_s << ')'
end