1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fix method name typo in Matrix.row_vector

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3724 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
dave 2003-04-24 20:10:02 +00:00
parent 8d73177ad9
commit 033ea1c464
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2003-04-24 Dave Thomas <dave@wireless_1.local.thomases.com>
* lib/matrix.rb (Matrix.row_vector): Fix method name typo
Thu Apr 24 19:40:02 2003 WATANABE Hirofumi <eban@ruby-lang.org>
* ext/extmk.rb: add -Wl,--no-undefined to LDSHARED only

View file

@ -310,7 +310,7 @@ class Matrix
when Array
Matrix.rows([row.dup], false)
else
Matrix.row([[row]], false)
Matrix.rows([[row]], false)
end
end