aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/SVD
diff options
context:
space:
mode:
authorGravatar Thomas Capricelli <orzel@freehackers.org>2009-05-22 19:46:29 +0200
committerGravatar Thomas Capricelli <orzel@freehackers.org>2009-05-22 19:46:29 +0200
commit0ed7c2f6d7738d83e9b26e6a3d36ea77ac9699cd (patch)
treed3001330de13ad3a919d3dffd604e607df799fa9 /Eigen/src/SVD
parentc7303a876f8a051855ec9866a4aad1c694b2140d (diff)
fix typo
Diffstat (limited to 'Eigen/src/SVD')
-rw-r--r--Eigen/src/SVD/SVD.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/SVD/SVD.h b/Eigen/src/SVD/SVD.h
index 0073a0ccb..37253c26b 100644
--- a/Eigen/src/SVD/SVD.h
+++ b/Eigen/src/SVD/SVD.h
@@ -65,7 +65,7 @@ template<typename MatrixType> class SVD
* \brief Default Constructor.
*
* The default constructor is useful in cases in which the user intends to
- * perform decompositions via QR::compute(const MatrixType&).
+ * perform decompositions via SVD::compute(const MatrixType&).
*/
SVD() : m_matU(), m_matV(), m_sigma(), m_isInitialized(false) {}