From b0a5b0bc5864364c2c4c423284d639c0b0df9b9d Mon Sep 17 00:00:00 2001
From: Timo Koch <timo.koch@iws.uni-stuttgart.de>
Date: Wed, 29 Jan 2020 18:27:16 +0100
Subject: [PATCH] [istl][solver] Fix error message

---
 dumux/linear/istlsolverfactorybackend.hh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dumux/linear/istlsolverfactorybackend.hh b/dumux/linear/istlsolverfactorybackend.hh
index ea8b8fa6fc..31bc333790 100644
--- a/dumux/linear/istlsolverfactorybackend.hh
+++ b/dumux/linear/istlsolverfactorybackend.hh
@@ -194,9 +194,9 @@ private:
             }
         }
 
-        // prevent throw in solve
+        // The type param is mandatory
         if (!params_.hasKey("type"))
-            DUNE_THROW(Dune::InvalidStateException, "Solverfactory needs a specified \"type\" key to select the solver");
+            DUNE_THROW(Dune::InvalidStateException, "Solver factory needs a specified \"Type\" key to select the solver");
     }
 
     const std::string paramGroup_;
-- 
GitLab