From 799db435a435543c80644e03a2b29eb63e55575c Mon Sep 17 00:00:00 2001 From: ArseniyKholod <119304909+ArseniyKholod@users.noreply.github.com> Date: Sat, 3 Feb 2024 16:47:34 +0200 Subject: [PATCH] Update docs/literate/src/files/first_steps/create_first_setup.jl Co-authored-by: Joshua Lampert <51029046+JoshuaLampert@users.noreply.github.com> --- docs/literate/src/files/first_steps/create_first_setup.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/literate/src/files/first_steps/create_first_setup.jl b/docs/literate/src/files/first_steps/create_first_setup.jl index 2ae59f51792..fea1fafd0b5 100644 --- a/docs/literate/src/files/first_steps/create_first_setup.jl +++ b/docs/literate/src/files/first_steps/create_first_setup.jl @@ -45,7 +45,7 @@ advection_velocity = (0.2, -0.7) equations = LinearScalarAdvectionEquation2D(advection_velocity) # To solve our problem numerically using Trixi.jl, we have to discretize the spatial -# domain, for which we set up a mesh. One of the most used meshes in Trixi.jl is +# domain, for which we set up a mesh. One of the most used meshes in Trixi.jl is the # [`TreeMesh`](@ref). The spatial domain used is ``[-1, 1] \times [-1, 1]``. We set an initial number # of elements in the mesh using `initial_refinement_level`, which describes the initial number of # hierarchical refinements. The variable `n_cells_max` is used to limit the number of elements in the mesh,