From c332cbfa305cef392088599fc809dafe243e28de Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?St=C3=A9phane=20Del=20Pino?= <stephane.delpino44@gmail.com>
Date: Wed, 26 Feb 2025 18:15:28 +0100
Subject: [PATCH] Fix typo in the documentation

---
 doc/userdoc.org | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/doc/userdoc.org b/doc/userdoc.org
index 6144f5a9a..cca6363ed 100644
--- a/doc/userdoc.org
+++ b/doc/userdoc.org
@@ -4503,15 +4503,15 @@ discrete function.
   import mesh;
   import scheme;
 
-  let m:mesh, m = cartesianMesh(0, [1,1], (10,10));
+  let m1:mesh, m1 = cartesianMesh(0, [1,1], (10,10));
 
   let f: R^2 -> R, x -> 2*x[0]+x[1];
-  let fh:Vh, fh = interpolate(m, P0(), f);
+  let fh:Vh, fh = interpolate(m1, P0(), f);
 
-  let m2: mesh, m2 = get_mesh(sum);
+  let m2: mesh, m2 = get_mesh(fh);
 #+END_SRC
-Observe that in this example the two variables refer to the same exact
-mesh. There is no duplication.
+Observe that in this example the two variables ~m1~ and ~m2~ refer to the
+same exact mesh. There is no duplication.
 
 ***** ~load_balance: (Vh) -> (Vh)~
 
-- 
GitLab