# File lib/will_paginate/deprecation.rb, line 34
    def deprecate_key(*keys)
      message = block_given? ? Proc.new : keys.pop
      Array(keys).each { |key| @deprecated[key] = message }
    end