From 028bccf66cc23598308e08139708b04c942a5529 Mon Sep 17 00:00:00 2001 From: Bert Wesarg Date: Fri, 12 Jun 2020 08:40:16 +0200 Subject: [PATCH] doc: Fix *same as sub* for `col` and `row` --- dash/include/dash/Matrix.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dash/include/dash/Matrix.h b/dash/include/dash/Matrix.h index 1d4c49f94..e705332d0 100644 --- a/dash/include/dash/Matrix.h +++ b/dash/include/dash/Matrix.h @@ -610,7 +610,7 @@ class Matrix /** * Projection to given offset in first sub-dimension (column), same as - * \c sub<0>(n). + * \c sub<1>(n). * * \returns A \ref MatrixRef object representing the nth column * @@ -623,7 +623,7 @@ class Matrix /** * Projection to given offset in first sub-dimension (column), same as - * \c sub<0>(n). + * \c sub<1>(n). * * \returns A \ref MatrixRef object representing the nth column * @@ -636,7 +636,7 @@ class Matrix /** * Projection to given offset in second sub-dimension (rows), same as - * \c sub<1>(n). + * \c sub<0>(n). * * \returns A \ref MatrixRef object representing the nth row * @@ -649,7 +649,7 @@ class Matrix /** * Projection to given offset in second sub-dimension (rows), same as - * \c sub<1>(n). + * \c sub<0>(n). * * \returns A \ref MatrixRef object representing the nth row *