From 652a59e1651fb724ae0e2e50fa9e459b254ecf63 Mon Sep 17 00:00:00 2001
From: Dmitri Naumov <github@naumov.de>
Date: Mon, 1 Feb 2021 13:28:54 +0100
Subject: [PATCH] [MPL] Fix typo in comment.

---
 .../Properties/RelativePermeability/RelPermBrooksCorey.cpp    | 4 ++--
 .../Properties/RelativePermeability/RelPermLiakopoulos.cpp    | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/MaterialLib/MPL/Properties/RelativePermeability/RelPermBrooksCorey.cpp b/MaterialLib/MPL/Properties/RelativePermeability/RelPermBrooksCorey.cpp
index 4865dd8fdbc..49b3a9f4824 100644
--- a/MaterialLib/MPL/Properties/RelativePermeability/RelPermBrooksCorey.cpp
+++ b/MaterialLib/MPL/Properties/RelativePermeability/RelPermBrooksCorey.cpp
@@ -41,7 +41,7 @@ PropertyDataType RelPermBrooksCorey::value(
 {
     /// here, an extra computation of saturation is forced, guaranteeing a
     /// correct value. In order to speed up the computing time, saturation could
-    /// be insertred into the primary variable array after it is computed in the
+    /// be inserted into the primary variable array after it is computed in the
     /// FEM assembly.
     auto const s_L = std::visit(
         [&variable_array, &pos, t, dt](auto&& scale) -> double {
@@ -83,7 +83,7 @@ PropertyDataType RelPermBrooksCorey::dValue(
            " derivatives with respect to liquid saturation only.");
     /// here, an extra computation of saturation is forced, guaranteeing a
     /// correct value. In order to speed up the computing time, saturation could
-    /// be insertred into the primary variable array after it is computed in the
+    /// be inserted into the primary variable array after it is computed in the
     /// FEM assembly.
     auto const s_L = std::visit(
         [&variable_array, &pos, t, dt](auto&& scale) -> double {
diff --git a/MaterialLib/MPL/Properties/RelativePermeability/RelPermLiakopoulos.cpp b/MaterialLib/MPL/Properties/RelativePermeability/RelPermLiakopoulos.cpp
index 7fab447cf45..efb0545f7d1 100644
--- a/MaterialLib/MPL/Properties/RelativePermeability/RelPermLiakopoulos.cpp
+++ b/MaterialLib/MPL/Properties/RelativePermeability/RelPermLiakopoulos.cpp
@@ -32,7 +32,7 @@ PropertyDataType RelPermLiakopoulos::value(
 {
     /// here, an extra computation of saturation is forced, guaranteeing a
     /// correct value. In order to speed up the computing time, saturation could
-    /// be insertred into the primary variable array after it is computed in the
+    /// be inserted into the primary variable array after it is computed in the
     /// FEM assembly.
     auto const s_L = std::visit(
         [&variable_array, &pos, t, dt](auto&& scale) -> double {
@@ -71,7 +71,7 @@ PropertyDataType RelPermLiakopoulos::dValue(
            " derivatives with respect to liquid saturation only.");
     /// here, an extra computation of saturation is forced, guaranteeing a
     /// correct value. In order to speed up the computing time, saturation could
-    /// be insertred into the primary variable array after it is computed in the
+    /// be inserted into the primary variable array after it is computed in the
     /// FEM assembly.
     auto const s_L = std::visit(
         [&variable_array, &pos, t, dt](auto&& scale) -> double {
-- 
GitLab