diff --git a/src/NCollection/NCollection_Array2.hxx b/src/NCollection/NCollection_Array2.hxx index c03181f25e..c298d9e9f4 100644 --- a/src/NCollection/NCollection_Array2.hxx +++ b/src/NCollection/NCollection_Array2.hxx @@ -140,10 +140,11 @@ public: Standard_Integer Length (void) const { return RowLength() * ColLength(); } - //! RowLength + //! Returns length of the row, i.e. number of columns Standard_Integer RowLength (void) const { return (myUpperCol-myLowerCol+1); } - //! ColLength + + //! Returns length of the column, i.e. number of rows Standard_Integer ColLength (void) const { return (myUpperRow-myLowerRow+1); }