From 488aa9d92014481f28fcdd440ddf250380ed3da0 Mon Sep 17 00:00:00 2001
From: Felix Gruber <gruber@igpm.rwth-aachen.de>
Date: Fri, 15 Apr 2016 16:20:50 +0200
Subject: [PATCH] =?UTF-8?q?[cleanup]=20typo:=20disgard=20=E2=86=92=20disca?=
 =?UTF-8?q?rd?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 dune/istl/matrixmarket.hh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dune/istl/matrixmarket.hh b/dune/istl/matrixmarket.hh
index b8bbff504..10f6382c9 100644
--- a/dune/istl/matrixmarket.hh
+++ b/dune/istl/matrixmarket.hh
@@ -300,7 +300,7 @@ namespace Dune
       // ignore comment lines
       while(c=='%')
       {
-        /* disgard the rest of the line */
+        /* discard the rest of the line */
         file.ignore(std::numeric_limits<std::streamsize>::max(),'\n');
         c=file.peek();
       }
@@ -319,7 +319,7 @@ namespace Dune
       std::cout<<buffer<<std::endl;
       /* read the banner */
       if(buffer!="%%MatrixMarket") {
-        /* disgard the rest of the line */
+        /* discard the rest of the line */
         file.ignore(std::numeric_limits<std::streamsize>::max(),'\n');
         return false;
       }
@@ -333,7 +333,7 @@ namespace Dune
 
       if(buffer != "matrix")
       {
-        /* disgard the rest of the line */
+        /* discard the rest of the line */
         file.ignore(std::numeric_limits<std::streamsize>::max(),'\n');
         return false;
       }
-- 
GitLab