aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util/IndexedViewHelper.h
diff options
context:
space:
mode:
authorGravatar Patrik Huber <patrikhuber@gmail.com>2018-11-23 22:22:14 +0000
committerGravatar Patrik Huber <patrikhuber@gmail.com>2018-11-23 22:22:14 +0000
commit95566eeed4793067e0f8db45f6b8a139b18d1201 (patch)
tree25b95ea44f2494e7ddb8dada2fde296f9b6a0b0c /Eigen/src/Core/util/IndexedViewHelper.h
parente3b22a6bd00c140a6090670cf369a49faf32a4d4 (diff)
Fix typos
Diffstat (limited to 'Eigen/src/Core/util/IndexedViewHelper.h')
-rw-r--r--Eigen/src/Core/util/IndexedViewHelper.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/Core/util/IndexedViewHelper.h b/Eigen/src/Core/util/IndexedViewHelper.h
index 40e16fdb4..1cda85060 100644
--- a/Eigen/src/Core/util/IndexedViewHelper.h
+++ b/Eigen/src/Core/util/IndexedViewHelper.h
@@ -23,7 +23,7 @@ struct symbolic_last_tag {};
* Can be used as a parameter to Eigen::seq and Eigen::seqN functions to symbolically reference the last element/row/columns
* of the underlying vector or matrix once passed to DenseBase::operator()(const RowIndices&, const ColIndices&).
*
- * This symbolic placeholder support standard arithmetic operation.
+ * This symbolic placeholder supports standard arithmetic operations.
*
* A typical usage example would be:
* \code
@@ -44,7 +44,7 @@ static const symbolic::SymbolExpr<internal::symbolic_last_tag> last; // PLEASE u
* reference the last+1 element/row/columns of the underlying vector or matrix once
* passed to DenseBase::operator()(const RowIndices&, const ColIndices&).
*
- * This symbolic placeholder support standard arithmetic operation.
+ * This symbolic placeholder supports standard arithmetic operations.
* It is essentially an alias to last+fix<1>.
*
* \sa last