# File lib/chronic/handlers.rb, line 53
    def handle_od_rmn(tokens, options)
      month = tokens[1].get_tag(RepeaterMonthName)
      day = tokens[0].get_tag(OrdinalDay).type

      return if month_overflow?(Chronic.now.year, month.index, day)

      handle_m_d(month, day, tokens[2..tokens.size], options)
    end