# File lib/sass/script/number.rb, line 91
    def minus(other)
      if other.is_a? Number
        operate(other, :-)
      else
        super
      end
    end