summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authormarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-16 08:26:06 +0000
committermarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-16 08:26:06 +0000
commit684115fa9cc610f4ce5ae9a5c9a4c424161ccfd3 (patch)
tree0eb2012a503b333c12319e4d7dfaa0c151b1e619 /lib
parentce897307b0837ec5c1fc75fdc8ccf1f168741dbe (diff)
* lib/matrix.rb (Matrix#/): Fix was is obviously a bug
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@24962 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/matrix.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/matrix.rb b/lib/matrix.rb
index 7f117ceecb..22fa170ba5 100644
--- a/lib/matrix.rb
+++ b/lib/matrix.rb
@@ -545,7 +545,7 @@ class Matrix
return self * other.inverse
else
x, y = other.coerce(self)
- rerurn x / y
+ return x / y
end
end