From 043cd8ee64f521e8aaedc3d9aee35676b7839251 Mon Sep 17 00:00:00 2001
From: Norbert Grunwald <Norbert.Grunwald@ufz.de>
Date: Wed, 22 Jan 2020 12:45:52 +0100
Subject: [PATCH] fixed typo

---
 ProcessLib/HT/HTProcess.cpp | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/ProcessLib/HT/HTProcess.cpp b/ProcessLib/HT/HTProcess.cpp
index de075b702ea..25b32dd2719 100644
--- a/ProcessLib/HT/HTProcess.cpp
+++ b/ProcessLib/HT/HTProcess.cpp
@@ -291,18 +291,18 @@ void checkMPLProperties(MeshLib::Mesh const& mesh,
 {
     DBUG("Check the media properties of HT process ...");
 
-    std::vector<MaterialPropertyLib::PropertyType> const reqiredPropertyMedium =
+    std::vector<MaterialPropertyLib::PropertyType> const requiredPropertyMedium =
         {MaterialPropertyLib::PropertyType::porosity,
          MaterialPropertyLib::PropertyType::permeability};
 
     std::vector<MaterialPropertyLib::PropertyType> const
-        reqiredPropertyLiquidPhase = {
+        requiredPropertyLiquidPhase = {
             MaterialPropertyLib::PropertyType::viscosity,
             MaterialPropertyLib::PropertyType::density,
             MaterialPropertyLib::PropertyType::specific_heat_capacity};
 
     std::vector<MaterialPropertyLib::PropertyType> const
-        reqiredPropertySolidPhase = {
+        requiredPropertySolidPhase = {
             MaterialPropertyLib::PropertyType::specific_heat_capacity,
             MaterialPropertyLib::PropertyType::density,
             MaterialPropertyLib::PropertyType::storage};
@@ -314,7 +314,7 @@ void checkMPLProperties(MeshLib::Mesh const& mesh,
         // check if a definition of the porous media exists
         auto const& medium = *process_data.media_map->getMedium(element_id);
 
-        for (auto const property : reqiredPropertyMedium)
+        for (auto const property : requiredPropertyMedium)
         {
             if (!medium.hasProperty(property))
             {
@@ -327,7 +327,7 @@ void checkMPLProperties(MeshLib::Mesh const& mesh,
         // check if liquid phase definition and the corresponding properties
         // exists
         auto const& liquid_phase = medium.phase("AqueousLiquid");
-        for (auto const property : reqiredPropertyLiquidPhase)
+        for (auto const property : requiredPropertyLiquidPhase)
         {
             if (!liquid_phase.hasProperty(property))
             {
@@ -341,7 +341,7 @@ void checkMPLProperties(MeshLib::Mesh const& mesh,
         // check if solid phase definition and the corresponding properties
         // exists
         auto const& solid_phase = medium.phase("Solid");
-        for (auto const property : reqiredPropertySolidPhase)
+        for (auto const property : requiredPropertySolidPhase)
         {
             if (!solid_phase.hasProperty(property))
             {
-- 
GitLab