diff --git a/exercises/exercise-fluidsystem/README.md b/exercises/exercise-fluidsystem/README.md
index 90323dc3884749346417d5969172e60d31a8d00e..cf2065807a94964881adf53ecbb8b372fda190cb 100644
--- a/exercises/exercise-fluidsystem/README.md
+++ b/exercises/exercise-fluidsystem/README.md
@@ -175,7 +175,7 @@ Compare the gnuplot output to the following plot of the density function from ab
 
 ### 3. Implement a new fluid system
 
-The problem file and properties file for this part of the exercise are `2p2cproblem.hh` and `2p2cproperties.hh`, respectively. 
+The problem file and properties file for this part of the exercise are `2p2cproblem.hh` and `2p2cproperties.hh`, respectively.
 We now want to implement a new fluid system consisting of two liquid phases,which are water and the previously implemented compressible component. We will consider compositional effects, which is why we now have to derive our _TypeTag_ (`ExerciseFluidsystemTwoPTwoC`) from a _TypeTag_ (`TwoPTwoC`) that holds the miscible two-phase
     two-component model properties:
 
@@ -186,6 +186,7 @@ We now want to implement a new fluid system consisting of two liquid phases,whic
 
 ```c++
 // Create a new type tag for the problem
+namespace TTag {
 struct ExerciseFluidsystemTwoPTwoC { using InheritsFrom = std::tuple<TwoPTwoC, BoxModel>; };
 } // end namespace TTag
 ```
diff --git a/exercises/exercise-mainfile/README.md b/exercises/exercise-mainfile/README.md
index de8323867e9581d12e6990b8ecf64a9cc3b45a3c..0cd26b51fdc99e096b8854485f7a520b6b5e03ad 100644
--- a/exercises/exercise-mainfile/README.md
+++ b/exercises/exercise-mainfile/README.md
@@ -111,8 +111,8 @@ using Assembler = FVAssembler<TypeTag, DiffMethod::numeric>;
 auto assembler = std::make_shared<Assembler>(problem, fvGridGeometry, gridVariables, timeLoop);
 
 // the linear solver
-using LinearSolver = ILU0BiCGSTABBackend;
-auto linearSolver = std::make_shared<LinearSolver>();
+using LinearSolver = ILUBiCGSTABIstlSolver<LinearSolverTraits<GridGeometry>, LinearAlgebraTraitsFromAssembler<Assembler>>;
+auto linearSolver = std::make_shared<LinearSolver>(gridGeometry->gridView(), gridGeometry->dofMapper());
 
 // the non-linear solver
 using NewtonSolver = Dumux::NewtonSolver<Assembler, LinearSolver>;