diff options
author | marcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-02-22 20:22:31 +0000 |
---|---|---|
committer | marcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-02-22 20:22:31 +0000 |
commit | ecf33043b850b422447102f118cbbabe323a8670 (patch) | |
tree | ce1386d4a13382d47a491a68ca9d1b5adecb43df | |
parent | c1c9bcfd03aba5ce40f76ce2124d00638072952f (diff) | |
download | ruby-ecf33043b850b422447102f118cbbabe323a8670.tar.gz |
* lib/matrix.rb: [Doc] Fix Vector multiplication documentation [ci-skip]
[Fixes GH-837]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49691 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | lib/matrix.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/matrix.rb b/lib/matrix.rb index fb98d09323..1f8f0589e1 100644 --- a/lib/matrix.rb +++ b/lib/matrix.rb @@ -1907,7 +1907,7 @@ class Vector #++ # - # Multiplies the vector by +x+, where +x+ is a number or another vector. + # Multiplies the vector by +x+, where +x+ is a number or a matrix. # def *(x) case x |