Skip to content

Commit 2a7f190

Browse files
docs: format
1 parent b14bb67 commit 2a7f190

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/src/basics/Composition.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ N = S + I + R
204204
205205
@named seqn = ODESystem([D(S) ~ -β * S * I / N], t)
206206
@named ieqn = ODESystem([D(I) ~ β * S * I / N - γ * I], t)
207-
@named reqn = ODESystem([D(R) ~ γ * I],t )
207+
@named reqn = ODESystem([D(R) ~ γ * I], t)
208208
209209
sir = compose(
210210
ODESystem(

docs/src/examples/higher_order.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ eqs = [D(D(x)) ~ σ * (y - x),
2222
D(y) ~ x * (ρ - z) - y,
2323
D(z) ~ x * y - β * z]
2424
25-
@named sys = ODESystem(eqs,t)
25+
@named sys = ODESystem(eqs, t)
2626
```
2727

2828
Note that we could've used an alternative syntax for 2nd order, i.e.

docs/src/tutorials/bifurcation_diagram_computation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ It is also possible to use `ODESystem`s (rather than `NonlinearSystem`s) as inpu
9191
using BifurcationKit, ModelingToolkit, Plots
9292
using ModelingToolkit: t_nounits as t, D_nounits as D
9393
94-
@variables x(t) y(t)
94+
@variables x(t) y(t)
9595
@parameters μ
9696
eqs = [D(x) ~ μ * x - y - x * (x^2 + y^2),
9797
D(y) ~ x + μ * y - y * (x^2 + y^2)]

0 commit comments

Comments
 (0)