aboutsummaryrefslogtreecommitdiffstats
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 6c4f4f5482..8f2d472b88 100644
--- a/lib/matrix.rb
+++ b/lib/matrix.rb
@@ -1374,7 +1374,7 @@ class Vector
def coerce(other)
case other
when Numeric
- return Scalar.new(other), self
+ return Matrix::Scalar.new(other), self
else
raise TypeError, "#{self.class} can't be coerced into #{other.class}"
end