summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authordave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-04-24 20:10:02 +0000
committerdave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-04-24 20:10:02 +0000
commitf76086e0a87f86a255fbcfe28eab07234490104c (patch)
tree862404d803513f0b62f93399304ddd1cb69a67c4 /lib
parent4ae5b01d3ee87f9fb9a31034709fe57a2467b502 (diff)
downloadruby-f76086e0a87f86a255fbcfe28eab07234490104c.tar.gz
ruby-f76086e0a87f86a255fbcfe28eab07234490104c.tar.xz
ruby-f76086e0a87f86a255fbcfe28eab07234490104c.zip
Fix method name typo in Matrix.row_vector
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3724 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 2bd03d919..d17b3517b 100644
--- a/lib/matrix.rb
+++ b/lib/matrix.rb
@@ -310,7 +310,7 @@ class Matrix
when Array
Matrix.rows([row.dup], false)
else
- Matrix.row([[row]], false)
+ Matrix.rows([[row]], false)
end
end