mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/matrix.rb (Matrix#/): Fix obvious bug
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24961 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e353346e14
commit
405cfda0d2
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Wed Sep 16 17:20:49 2009 Marc-Andre Lafortune <ruby-core@marc-andre.ca>
|
||||
|
||||
* lib/matrix.rb (Matrix#/): Fix obvious bug
|
||||
|
||||
Wed Sep 16 16:59:34 2009 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* win32/Makefile.sub (DOCTARGETS): rdoc is default.
|
||||
|
|
|
@ -546,7 +546,7 @@ class Matrix
|
|||
return self * other.inverse
|
||||
else
|
||||
x, y = other.coerce(self)
|
||||
rerurn x / y
|
||||
return x / y
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue