Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in symmetric_mesh.md #69

Merged
merged 1 commit into from
Dec 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/src/tutorials/symmetric_mesh.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -360,4 +360,4 @@ renameCurve!(symmetric_mesh, "right", ":symmetry")

# Generate the mesh. Saves the mesh file to the directory "out".
generate_mesh(symmetric_mesh)
```
```
Loading