# File lib/active_support/core_ext/date/calculations.rb, line 94
        def change(options)
          ::Date.new(
            options[:year]  || self.year,
            options[:month] || self.month,
            options[:day]   || self.day
          )
        end