From 0ed7c2f6d7738d83e9b26e6a3d36ea77ac9699cd Mon Sep 17 00:00:00 2001 From: Thomas Capricelli Date: Fri, 22 May 2009 19:46:29 +0200 Subject: [PATCH] fix typo --- Eigen/src/SVD/SVD.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 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) {}