From 12e7675c55cdeef20c4a6ec84daf88bd6b28be08 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 | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/dash/include/dash/Matrix.h b/dash/include/dash/Matrix.h index 1d4c49f94..b5a83e027 100644 --- a/dash/include/dash/Matrix.h +++ b/dash/include/dash/Matrix.h @@ -609,8 +609,8 @@ class Matrix local_type sub_local() noexcept; /** - * Projection to given offset in first sub-dimension (column), same as - * \c sub<0>(n). + * Projection to given offset in second sub-dimension (column), same as + * \c sub<1>(n). * * \returns A \ref MatrixRef object representing the nth column * @@ -622,8 +622,8 @@ class Matrix ) const; /** - * Projection to given offset in first sub-dimension (column), same as - * \c sub<0>(n). + * Projection to given offset in second sub-dimension (column), same as + * \c sub<1>(n). * * \returns A \ref MatrixRef object representing the nth column * @@ -635,8 +635,8 @@ class Matrix ); /** - * Projection to given offset in second sub-dimension (rows), same as - * \c sub<1>(n). + * Projection to given offset in first sub-dimension (rows), same as + * \c sub<0>(n). * * \returns A \ref MatrixRef object representing the nth row * @@ -648,8 +648,8 @@ class Matrix ) const; /** - * Projection to given offset in second sub-dimension (rows), same as - * \c sub<1>(n). + * Projection to given offset in first sub-dimension (rows), same as + * \c sub<0>(n). * * \returns A \ref MatrixRef object representing the nth row *