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 028bccf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dash/include/dash/Matrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
*
Expand All @@ -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
*
Expand All @@ -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
*
Expand All @@ -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
*
Expand Down

0 comments on commit 028bccf

Please sign in to comment.