From c50b434e8d9408c641acba3f63d39d4d701f9651 Mon Sep 17 00:00:00 2001 From: Johannes Markert Date: Mon, 8 Apr 2024 13:18:30 +0200 Subject: [PATCH] Fixed typos. --- src/meshes/t8code_mesh.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/meshes/t8code_mesh.jl b/src/meshes/t8code_mesh.jl index 72f7cf337b1..69ddb9a0bf7 100644 --- a/src/meshes/t8code_mesh.jl +++ b/src/meshes/t8code_mesh.jl @@ -106,7 +106,7 @@ end Create a 'T8codeMesh'. # Arguments -- 'forest': Pointer to a commited forest. +- 'forest': Pointer to a committed forest. - 'boundary_names': List of boundary names. - 'polydeg::Integer': Polynomial degree used to store the geometry of the mesh. The mapping will be approximated by an interpolation polynomial @@ -325,7 +325,7 @@ function T8codeMesh(trees_per_dimension; polydeg = 1, end end - # Note, `p*est_connectivity_new_brick` convers a domain of `[0,nx] x [0,ny] x ....`. + # Note, `p*est_connectivity_new_brick` converts a domain of `[0,nx] x [0,ny] x ....`. # Hence, transform mesh coordinates to reference space [-1,1]^NDIMS before applying user defined mapping. mapping_(xyz...) = mapping((x * 2.0/tpd - 1.0 for (x,tpd) in zip(xyz, trees_per_dimension))...)