aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/plugins
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2017-01-16 16:20:16 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2017-01-16 16:20:16 +0100
commite70c4c97faf89b844dc9986e664257c9423c7ff6 (patch)
treea30c587ff5fa0ed51efa0aa3e8545ccd9fee7312 /Eigen/src/plugins
parenta9232af845702d62d81c49b4d92b39f29410cea0 (diff)
Typo
Diffstat (limited to 'Eigen/src/plugins')
-rw-r--r--Eigen/src/plugins/IndexedViewMethods.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/plugins/IndexedViewMethods.h b/Eigen/src/plugins/IndexedViewMethods.h
index 774a5cbe5..0584a5926 100644
--- a/Eigen/src/plugins/IndexedViewMethods.h
+++ b/Eigen/src/plugins/IndexedViewMethods.h
@@ -195,7 +195,7 @@ operator()(const IndicesT (&indices)[IndicesN]) EIGEN_INDEXED_VIEW_METHOD_CONST
* Each parameter must either be:
* - An integer indexing a single row or column
* - Eigen::all indexing the full set of respective rows or columns in increasing order
- * - An ArithemeticSequence as returned by the Eigen::seq and Eigen::seqN functions
+ * - An ArithmeticSequence as returned by the Eigen::seq and Eigen::seqN functions
* - Any %Eigen's vector/array of integers or expressions
* - Plain C arrays: \c int[N]
* - And more generally any type exposing the following two member functions:
@@ -212,7 +212,7 @@ operator()(const IndicesT (&indices)[IndicesN]) EIGEN_INDEXED_VIEW_METHOD_CONST
* when all arguments are either:
* - An integer
* - Eigen::all
- * - An ArithemeticSequence with compile-time increment strictly equal to 1, as returned by Eigen::seq(a,b), and Eigen::seqN(a,N).
+ * - An ArithmeticSequence with compile-time increment strictly equal to 1, as returned by Eigen::seq(a,b), and Eigen::seqN(a,N).
*
* Otherwise a more general IndexedView<Derived,RowIndices',ColIndices'> object will be returned, after conversion of the inputs
* to more suitable types \c RowIndices' and \c ColIndices'.