From 17876bbe71397931b642611ef7d897cb3ff8c408 Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Mon, 28 Nov 2016 09:59:32 +0000
Subject: [PATCH] fix

---
 tutorial/t15.geo | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tutorial/t15.geo b/tutorial/t15.geo
index 52379bcc04..1be2c1ade4 100644
--- a/tutorial/t15.geo
+++ b/tutorial/t15.geo
@@ -18,18 +18,18 @@ Point(5) = {0.02, 0.02, 0, lc};
 
 // One can force this point to be included ("embedded") in the 2D mesh, using
 // the "Point In Surface" command:
-Point{5} In Surface{6};
+Point{5} In Surface{1};
 
 // In the same way, one can force a curve to be embedded in the 2D mesh using
 // the "Line in Surface" command:
 Point(6) = {0.02, 0.12, 0, lc};
 Point(7) = {0.04, 0.18, 0, lc};
 Line(5) = {6, 7};
-Line{5} In Surface{6};
+Line{5} In Surface{1};
 
 // One can also embed points and lines in a volume using the "Line/Point In
 // Volume" commands:
-Extrude {0, 0, 0.1}{ Surface {6}; }
+Extrude {0, 0, 0.1}{ Surface {1}; }
 
 p = newp;
 Point(p) = {0.07, 0.15, 0.025, lc};
-- 
GitLab