Skip to content

Commit 728ed3f

Browse files
authored
Merge pull request #404 from SciML/sf/ci_churn
eliminate extra spaces
2 parents db8b708 + 7ee4c67 commit 728ed3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tutorials/introduction/01-ode_introduction.jmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ and $u(0) = 1.0$. We encode this into Julia by noticing that, in this setup, we
3636
f(u,p,t) = 0.98u
3737
```
3838

39-
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:
39+
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:
4040

4141
```julia
4242
using DifferentialEquations

0 commit comments

Comments
 (0)