* lib/rational.rb(Rational#hash): modify algorism for hash-function.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2708 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
keiju 2002-08-15 07:36:35 +00:00
Родитель 8d330378ca
Коммит b604386fad
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -240,7 +240,7 @@ class Rational < Numeric
end
def hash
@numerator ^ @denominator
@numerator.hash ^ @denominator.hash
end
attr :numerator