From 909f99e6542940253c048a90c1b41fed95fd113a Mon Sep 17 00:00:00 2001 From: James Cook Date: Wed, 18 Dec 2024 18:27:27 +0000 Subject: [PATCH] Fix type in symmetric_mesh.md (#69) `bspline_project` -> `symmetric_mesh` --- docs/src/tutorials/symmetric_mesh.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/tutorials/symmetric_mesh.md b/docs/src/tutorials/symmetric_mesh.md index e1d84171..b369419c 100644 --- a/docs/src/tutorials/symmetric_mesh.md +++ b/docs/src/tutorials/symmetric_mesh.md @@ -70,7 +70,7 @@ For a domain bounded by an outer boundary curve, this background grid is set by element size in the $x$ and $y$ directions. To start, we set the background grid for `symmetric_mesh` to have elements with side length $0.25$ in each direction ```julia -addBackgroundGrid!(spline_project, [0.25, 0.25, 0.0]) +addBackgroundGrid!(symmetric_mesh, [0.25, 0.25, 0.0]) ``` ## Add the outer boundary @@ -360,4 +360,4 @@ renameCurve!(symmetric_mesh, "right", ":symmetry") # Generate the mesh. Saves the mesh file to the directory "out". generate_mesh(symmetric_mesh) -``` \ No newline at end of file +```