lib/farseer/result.rb in farseer-0.2.0 vs lib/farseer/result.rb in farseer-0.3.0
- old
+ new
@@ -8,10 +8,10 @@
freeze
end
attr_reader :token, :rest
def eql?(other)
- self.class.eql?(other.class) and
+ self.class.eql?(other.class) and
self.token.eql?(other.token) and
self.rest.eql?(other.rest)
end
alias == eql?
end