From f85bd13669f13a1492dbc7cec9a1cc29c5d85d86 Mon Sep 17 00:00:00 2001
From: Tom Fischer <thomas.fischer@ufz.de>
Date: Mon, 10 Jun 2024 10:13:06 +0200
Subject: [PATCH] [PL/TimeLoop] Fix spelling

---
 ProcessLib/TimeLoop.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ProcessLib/TimeLoop.cpp b/ProcessLib/TimeLoop.cpp
index 2ce9cb19695..dfdb452a7dc 100644
--- a/ProcessLib/TimeLoop.cpp
+++ b/ProcessLib/TimeLoop.cpp
@@ -381,9 +381,9 @@ std::pair<double, bool> TimeLoop::computeTimeStepping(
     }
 
     // adjust step size considering external communciation_point_calculators
-    for (auto const& time_step_constain : time_step_constraints)
+    for (auto const& time_step_constraint : time_step_constraints)
     {
-        dt = std::min(dt, time_step_constain(t, dt));
+        dt = std::min(dt, time_step_constraint(t, dt));
     }
 
     // Check whether the time stepping is stabilized
-- 
GitLab