From c0bb943ab4219470fabe857a2385a50ce84f191f Mon Sep 17 00:00:00 2001
From: Christoph Grueninger <christoph.grueninger@iws.uni-stuttgart.de>
Date: Mon, 4 Jun 2012 06:54:31 +0000
Subject: [PATCH] Fixed typo in variable name, fvGeomtry -> fvGeometry. (review
 by vishal)

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@8422 2fb0f335-1f38-0410-981e-8018bf24f1b0
---
 dumux/boxmodels/3p3cni/3p3cnivolumevariables.hh | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/dumux/boxmodels/3p3cni/3p3cnivolumevariables.hh b/dumux/boxmodels/3p3cni/3p3cnivolumevariables.hh
index 445e3a29d6..c138b8d61a 100644
--- a/dumux/boxmodels/3p3cni/3p3cnivolumevariables.hh
+++ b/dumux/boxmodels/3p3cni/3p3cnivolumevariables.hh
@@ -75,7 +75,7 @@ public:
     void update(const PrimaryVariables &priVars,
                 const Problem &problem,
                 const Element &element,
-                const FVElementGeometry &fvGeomtry,
+                const FVElementGeometry &fvGeometry,
                 const int scvIdx,
                 bool isOldSol)
     {
@@ -83,7 +83,7 @@ public:
         ParentType::update(priVars,
                            problem,
                            element,
-                           fvGeomtry,
+                           fvGeometry,
                            scvIdx,
                            isOldSol);
 
@@ -130,7 +130,7 @@ protected:
     static Scalar temperature_(const PrimaryVariables &primaryVars,
                                const Problem& problem,
                                const Element &element,
-                               const FVElementGeometry &fvGeomtry,
+                               const FVElementGeometry &fvGeometry,
                                const int scvIdx)
     {
         return primaryVars[temperatureIdx];
@@ -142,19 +142,19 @@ protected:
      * \param priVars The solution primary variables
      * \param problem The problem
      * \param element The element
-     * \param fvGeomtry Evaluate function with solution of current or previous time step
+     * \param fvGeometry Evaluate function with solution of current or previous time step
      * \param scvIdx The local index of the SCV (sub-control volume)
      * \param isOldSol Evaluate function with solution of current or previous time step
      */
     void updateEnergy_(const PrimaryVariables &priVars,
                        const Problem &problem,
                        const Element &element,
-                       const FVElementGeometry &fvGeomtry,
+                       const FVElementGeometry &fvGeometry,
                        const int scvIdx,
                        bool isOldSol)
     {
         // copmute and set the heat capacity of the solid phase
-        heatCapacity_ = problem.spatialParams().heatCapacity(element, fvGeomtry, scvIdx);
+        heatCapacity_ = problem.spatialParams().heatCapacity(element, fvGeometry, scvIdx);
         Valgrind::CheckDefined(heatCapacity_);
     };
 
-- 
GitLab