From 9815523ed23ae3e5e3d9adba226bf6ba8fa141c1 Mon Sep 17 00:00:00 2001
From: Oliver Sander <oliver.sander@tu-dresden.de>
Date: Wed, 30 May 2018 16:06:43 +0200
Subject: [PATCH] Minor documentation fixes

---
 dune/gfe/symmetricmatrix.hh | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/dune/gfe/symmetricmatrix.hh b/dune/gfe/symmetricmatrix.hh
index d6d32d7c..a8d847bb 100644
--- a/dune/gfe/symmetricmatrix.hh
+++ b/dune/gfe/symmetricmatrix.hh
@@ -23,10 +23,7 @@ public:
 
   enum {blocklevel = 0};
 
-    /** \brief Default constructor
-     *
-     *  Tensor is initialized containing zeros if no argument is given.
-     *  \param eye if true tensor is initialized as identity
+    /** \brief Default constructor, creates uninitialized matrix
      */
     SymmetricMatrix()
     {}
@@ -47,7 +44,7 @@ public:
      *  \param i line index
      *  \param j column index
      * \note You need to know what you are doing:  You can only access the lower
-     * left triangular submatrix using this methods.  It requires i<=j.
+     * left triangular submatrix using this methods.  It requires i>=j.
      */
     T& operator() (int i, int j)
     {
@@ -59,7 +56,7 @@ public:
      *  \param i line index
      *  \param j column index
      * \note You need to know what you are doing:  You can only access the lower
-     * left triangular submatrix using this methods.  It requires i<=j.
+     * left triangular submatrix using this methods.  It requires i>=j.
      */
     const T& operator() (int i, int j) const
     {
-- 
GitLab