diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | lib/rational.rb | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Mon Feb 20 12:27:53 2006 Kent Sibilev <ksruby@gmail.com> + + * lib/rational.rb (Integer::gcd): small typo fix. + [ruby-core:07395] + Mon Feb 20 10:03:59 2006 Yukihiro Matsumoto <matz@ruby-lang.org> * variable.c (rb_const_get_0): Object should have been the lowest diff --git a/lib/rational.rb b/lib/rational.rb index 45bd141c8d..5ed283cda0 100644 --- a/lib/rational.rb +++ b/lib/rational.rb @@ -434,7 +434,7 @@ class Integer # # The result is positive, no matter the sign of the arguments. # - def gcd(n) + def gcd(other) min = self.abs max = other.abs while min > 0 |