aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/IterativeLinearSolvers
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/IterativeLinearSolvers')
-rw-r--r--Eigen/IterativeLinearSolvers2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/IterativeLinearSolvers b/Eigen/IterativeLinearSolvers
index 3f889e3b5..d21fe8e3b 100644
--- a/Eigen/IterativeLinearSolvers
+++ b/Eigen/IterativeLinearSolvers
@@ -12,7 +12,7 @@ namespace Eigen {
*
* This module currently provides iterative methods to solve problems of the form \c A \c x = \c b, where \c A is a squared matrix, usually very large and sparse.
* Those solvers are accessible via the following classes:
- * - ConjugateGrdient for selfadjoint (hermitian) matrices,
+ * - ConjugateGradient for selfadjoint (hermitian) matrices,
* - BiCGSTAB for general square matrices.
*
* Such problems can also be solved using the direct sparse decomposition modules: SparseCholesky, CholmodSupport, UmfPackSupport, SuperLUSupport.