From c1eb2cb9fe1dab4174b3631150554bc3cf5341e7 Mon Sep 17 00:00:00 2001 From: ArseniyKholod <119304909+ArseniyKholod@users.noreply.github.com> Date: Sat, 3 Feb 2024 16:47:59 +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 fea1fafd0b5..001d5e71001 100644 --- a/docs/literate/src/files/first_steps/create_first_setup.jl +++ b/docs/literate/src/files/first_steps/create_first_setup.jl @@ -78,7 +78,7 @@ solver = DGSEM(polydeg=3) # ```math # u(0,x,y) = \sin\bigl(\pi x \bigr) \sin\bigl(\pi y \bigr) # ``` -# The initial conditions function must take coordinates, time and equation as arguments +# The initial conditions function must take spatial coordinates, time and equation as arguments # and return an initial condition as a static vector `SVector`. Following the same structure, you # can define your own initial conditions.