aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/SolveTriangular.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-08-28 21:44:56 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-08-28 21:44:56 +0000
commit7ea821d18e6b1294acf170b805c3c132c47f2f77 (patch)
tree196865782f422611721ce841373f9d77c3519c3c /Eigen/src/Core/SolveTriangular.h
parent80be1ea51582c92bf4dba2b4f104bb53b9628980 (diff)
spelling + some krazy directives
Diffstat (limited to 'Eigen/src/Core/SolveTriangular.h')
-rwxr-xr-xEigen/src/Core/SolveTriangular.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/SolveTriangular.h b/Eigen/src/Core/SolveTriangular.h
index 2664bff38..0f7aa3b3e 100755
--- a/Eigen/src/Core/SolveTriangular.h
+++ b/Eigen/src/Core/SolveTriangular.h
@@ -251,7 +251,7 @@ void MatrixBase<Derived>::solveTriangularInPlace(MatrixBase<OtherDerived>& other
* Therefore, if \a other is not needed anymore, it is quite faster to call solveTriangularInPlace()
* instead of solveTriangular().
*
- * For users comming from BLAS, this function (and more specifically solveTriangularInPlace()) offer
+ * For users coming from BLAS, this function (and more specifically solveTriangularInPlace()) offer
* all the operations supported by the \c *TRSV and \c *TRSM BLAS routines.
*
* \b Tips: to perform a \em "right-inverse-multiply" you can simply transpose the operation, e.g.: