From 11e2687a1ba4f989c8fa122291e56cbc3a26d992 Mon Sep 17 00:00:00 2001 From: ArseniyKholod <119304909+ArseniyKholod@users.noreply.github.com> Date: Fri, 3 Nov 2023 12:25:27 +0200 Subject: [PATCH] Update docs/literate/src/files/innards_of_the_basic_setup.jl Co-authored-by: Michael Schlottke-Lakemper --- docs/literate/src/files/innards_of_the_basic_setup.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/literate/src/files/innards_of_the_basic_setup.jl b/docs/literate/src/files/innards_of_the_basic_setup.jl index afde34105a8..57f5f386fc4 100644 --- a/docs/literate/src/files/innards_of_the_basic_setup.jl +++ b/docs/literate/src/files/innards_of_the_basic_setup.jl @@ -193,7 +193,7 @@ ode = semidiscretize(semi, (0.0, 1.0)); # ## Functions `solve` and `rhs!` -# Once the `ODEProblem` object is initialized, the `solve` function and one of the ODE-solvers from +# Once the `ODEProblem` object is initialized, the `solve` function and one of the ODE solvers from # the OrdinaryDiffEq.jl package can be utilized to compute an approximated solution using the # instructions contained in the `ODEProblem` object.