diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-05-16 17:19:41 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-05-16 17:19:41 +0000 |
| commit | 5aa727581530decbd185ba327b30076a2a89790a (patch) | |
| tree | c69018a88fa8941050e97db508bef25eca163ae7 | |
| parent | 1401d6bf771166e9fc30ca66e635baff41f6a868 (diff) | |
| download | ruby-5aa727581530decbd185ba327b30076a2a89790a.tar.gz ruby-5aa727581530decbd185ba327b30076a2a89790a.tar.xz ruby-5aa727581530decbd185ba327b30076a2a89790a.zip | |
* lib/rational.rb (Integer::denominator): fixed typo. (ruby-bugs-ja:PR#466)
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3810 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 7 | ||||
| -rw-r--r-- | lib/rational.rb | 2 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Sat May 17 02:17:42 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net> + + * lib/rational.rb (Integer::denominator): fixed typo. + (ruby-bugs-ja:PR#466) + Sat May 17 00:18:11 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net> * ext/socket/socket.c (ruby_connect): connect() after EINPROGRESS @@ -9,7 +14,7 @@ Fri May 16 12:40:40 2003 Yukihiro Matsumoto <matz@ruby-lang.org> * eval.c (block_pass): chain previous block to the pushing block. * time.c (time_cmp): does not compare with numbers for - interchangeability. (ruby-bugs-ja PR#458) + interchangeability. (ruby-bugs-ja:PR#458) Thu May 15 21:55:54 2003 why the lucky stiff <ruby-cvs@whytheluckystiff.net> diff --git a/lib/rational.rb b/lib/rational.rb index ccbbddd76..e0a364246 100644 --- a/lib/rational.rb +++ b/lib/rational.rb @@ -271,7 +271,7 @@ class Integer self end - def denomirator + def denominator 1 end |
