From dc810249e799024be7218afa30f5ffd4b011cf11 Mon Sep 17 00:00:00 2001 From: ArseniyKholod <119304909+ArseniyKholod@users.noreply.github.com> Date: Sat, 3 Feb 2024 16:47:01 +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 7f92aabad64..2ae59f51792 100644 --- a/docs/literate/src/files/first_steps/create_first_setup.jl +++ b/docs/literate/src/files/first_steps/create_first_setup.jl @@ -39,7 +39,7 @@ using OrdinaryDiffEq # ``` # is already implemented in Trixi.jl as # [`LinearScalarAdvectionEquation2D`](@ref), for which we need to define a two-dimensional parameter -# with the `advection_velocity`. Appropriate for our problem is `(0.2, -0.7)`. +# `advection_velocity` describing the paramaters ``a_1`` and ``a_2``. Appropriate for our problem is `(0.2, -0.7)`. advection_velocity = (0.2, -0.7) equations = LinearScalarAdvectionEquation2D(advection_velocity)