From 22393bc90c63838b7bd97dffe1fd855a4e3d4cc0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Dennis=20Gl=C3=A4ser?= <dennis.glaeser@iws.uni-stuttgart.de>
Date: Thu, 19 Oct 2023 08:59:54 +0200
Subject: [PATCH] [examples][diffusion] use simpler explanation for axpy

---
 examples/diffusion/model.hh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/diffusion/model.hh b/examples/diffusion/model.hh
index 9523db1bfc..fa9c0ff4b8 100644
--- a/examples/diffusion/model.hh
+++ b/examples/diffusion/model.hh
@@ -130,7 +130,7 @@ public:
         for (const auto& scv : scvs(fvGeometry))
         {
             const auto& volVars = elemVolVars[scv];
-            // v.axpy(a, w) means v <- v + a*w
+            // v.axpy(a, w) means v += a*w
             gradConcentration.axpy(
                 volVars.priVar(Indices::concentrationIdx),
                 fluxVarCache.gradN(scv.indexInElement())
-- 
GitLab