Skip to content

Commit

Permalink
doc: Fix *same as sub<x>* for col and row
Browse files Browse the repository at this point in the history
  • Loading branch information
bertwesarg committed Jun 12, 2020
1 parent cf45c2c commit 12e7675
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions dash/include/dash/Matrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
*
Expand All @@ -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
*
Expand All @@ -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
*
Expand All @@ -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
*
Expand Down

0 comments on commit 12e7675

Please sign in to comment.