summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-10 17:09:40 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-10 17:09:40 +0000
commit0a0cd5a5221bc546a583a989da3950e0df565469 (patch)
treefdd8b1163b1dbaa9dbbd3c806346f86045c29d33 /lib
parenta3c86b0f711a1d76689150ba2e3ed44ce6f9d987 (diff)
merges r24961 from trunk into ruby_1_9_1.
-- * lib/matrix.rb (Matrix#/): Fix obvious bug git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@25706 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 6fbaacb4b..88ccbca6b 100644
--- a/lib/matrix.rb
+++ b/lib/matrix.rb
@@ -559,7 +559,7 @@ class Matrix
return self * other.inverse
else
x, y = other.coerce(self)
- rerurn x / y
+ return x / y
end
end