# File lib/chronic/handlers.rb, line 431
    def month_overflow?(year, month, day)
      if Date.leap?(year)
        day > RepeaterMonth::MONTH_DAYS_LEAP[month - 1]
      else
        day > RepeaterMonth::MONTH_DAYS[month - 1]
      end
    end