summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
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