From 775c053e4fdf8277ca2ae07a6938755291bb02b6 Mon Sep 17 00:00:00 2001
From: Christoph Grueninger <christoph.grueninger@iws.uni-stuttgart.de>
Date: Mon, 4 Jun 2012 10:52:35 +0000
Subject: [PATCH] Fixed some typos in documentation for richardslens* test.

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@8425 2fb0f335-1f38-0410-981e-8018bf24f1b0
---
 test/boxmodels/richards/richardslensproblem.hh     | 14 +++++++-------
 .../richards/richardslensspatialparams.hh          |  4 ++--
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/test/boxmodels/richards/richardslensproblem.hh b/test/boxmodels/richards/richardslensproblem.hh
index 2edc106641..5765a6292d 100644
--- a/test/boxmodels/richards/richardslensproblem.hh
+++ b/test/boxmodels/richards/richardslensproblem.hh
@@ -24,7 +24,7 @@
  * \file
  *
  * \brief A water infiltration problem with a low-permeability lens
- *        embedded into a high- permeability domain which uses the
+ *        embedded into a high-permeability domain which uses the
  *        Richards box model.
  */
 #ifndef DUMUX_RICHARDS_LENSPROBLEM_HH
@@ -63,7 +63,7 @@ SET_PROP(RichardsLensProblem, Grid) { typedef Dune::SGrid<2, 2> type; };
 //SET_TYPE_PROP(RichardsLensProblem, Grid, Dune::YaspGrid<2>);
 #endif
 
-// Set the phsical problem to be solved
+// Set the physical problem to be solved
 SET_PROP(RichardsLensProblem, Problem)
 { typedef Dumux::RichardsLensProblem<TypeTag> type; };
 
@@ -76,13 +76,13 @@ public:
     typedef Dumux::LiquidPhase<Scalar, Dumux::SimpleH2O<Scalar> > type;
 };
 
-// Enable gravity?
+// Enable gravity
 SET_BOOL_PROP(RichardsLensProblem, EnableGravity, true);
 
-// Enable partial reassembly of the Jacobian matrix?
+// Enable partial reassembly of the Jacobian matrix
 SET_BOOL_PROP(RichardsLensProblem, EnablePartialReassemble, true);
 
-// Enable re-use of the Jacobian matrix for the first iteration of a time step?
+// Enable re-use of the Jacobian matrix for the first iteration of a time step
 SET_BOOL_PROP(RichardsLensProblem, EnableJacobianRecycling, true);
 
 // Use forward diffferences to approximate the Jacobian matrix
@@ -94,7 +94,7 @@ SET_INT_PROP(RichardsLensProblem, NewtonMaxSteps, 28);
 // Set the "desireable" number of newton iterations of a time step
 SET_INT_PROP(RichardsLensProblem, NewtonTargetSteps, 18);
 
-// Write the intermediate results of the newton method?
+// Do not write the intermediate results of the newton method
 SET_BOOL_PROP(RichardsLensProblem, NewtonWriteConvergence, false);
 }
 
@@ -103,7 +103,7 @@ SET_BOOL_PROP(RichardsLensProblem, NewtonWriteConvergence, false);
  * \ingroup BoxTestProblems
  *
  * \brief A water infiltration problem with a low-permeability lens
- *        embedded into a high- permeability domain which uses the
+ *        embedded into a high-permeability domain which uses the
  *        Richards box model.
  *
  * The domain is box shaped. Left and right boundaries are Dirichlet
diff --git a/test/boxmodels/richards/richardslensspatialparams.hh b/test/boxmodels/richards/richardslensspatialparams.hh
index 141d9d8d14..31f70c1512 100644
--- a/test/boxmodels/richards/richardslensspatialparams.hh
+++ b/test/boxmodels/richards/richardslensspatialparams.hh
@@ -40,7 +40,7 @@
 namespace Dumux
 {
 
-//forward declaration
+// forward declaration
 template<class TypeTag>
 class RichardsLensSpatialParams;
 
@@ -52,7 +52,7 @@ NEW_TYPE_TAG(RichardsLensSpatialParams);
 // Set the spatial parameters
 SET_TYPE_PROP(RichardsLensSpatialParams, SpatialParams, Dumux::RichardsLensSpatialParams<TypeTag>);
 
-// Set the material Law
+// Set the material law
 SET_PROP(RichardsLensSpatialParams, MaterialLaw)
 {
 private:
-- 
GitLab