From 121c4e3a28868c3b5a6e0e09bf90e27c782f97f3 Mon Sep 17 00:00:00 2001 From: Henry Weller Date: Thu, 24 Mar 2016 14:48:28 +0000 Subject: [PATCH] Matrix: correct docs --- src/OpenFOAM/matrices/Matrix/Matrix.H | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/OpenFOAM/matrices/Matrix/Matrix.H b/src/OpenFOAM/matrices/Matrix/Matrix.H index 9385d42d8..22e289a68 100644 --- a/src/OpenFOAM/matrices/Matrix/Matrix.H +++ b/src/OpenFOAM/matrices/Matrix/Matrix.H @@ -247,7 +247,7 @@ public: void transfer(mType&); //- Resize the matrix preserving the elements - void setSize(const label m, const label nCols); + void setSize(const label m, const label n); //- Return the transpose of the matrix @@ -279,10 +279,10 @@ public: template void operator=(const MatrixBlock&); - //- Assignment of all entries to zero + //- Assignment of all elements to zero void operator=(const zero); - //- Assignment of all entries to the given value + //- Assignment of all elements to the given value void operator=(const Type&);