From 7ee4c67173d27a9b5295aeac0dd6cdf13d724ed4 Mon Sep 17 00:00:00 2001 From: Elliot Saba Date: Tue, 25 May 2021 11:20:38 -0700 Subject: [PATCH] eliminate extra spaces --- tutorials/introduction/01-ode_introduction.jmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/introduction/01-ode_introduction.jmd b/tutorials/introduction/01-ode_introduction.jmd index 2720e8d8..fb330e57 100644 --- a/tutorials/introduction/01-ode_introduction.jmd +++ b/tutorials/introduction/01-ode_introduction.jmd @@ -36,7 +36,7 @@ and $u(0) = 1.0$. We encode this into Julia by noticing that, in this setup, we f(u,p,t) = 0.98u ``` -with $ u_0 = 1.0 $. If we want to solve this model on a time span from `t=0.0` to `t=1.0`, then we define an `ODEProblem` by specifying this function `f`, this initial condition `u0`, and this time span as follows: +with $u_0 = 1.0$. If we want to solve this model on a time span from `t=0.0` to `t=1.0`, then we define an `ODEProblem` by specifying this function `f`, this initial condition `u0`, and this time span as follows: ```julia using DifferentialEquations