Skip to content

Commit 660753b

Browse files
committed
📝 update docstring example for ODESystem
constructor takes independent variable
1 parent ebc744e commit 660753b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/systems/diffeqs/odesystem.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ eqs = [D(x) ~ σ*(y-x),
1919
D(y) ~ x*(ρ-z)-y,
2020
D(z) ~ x*y - β*z]
2121
22-
de = ODESystem(eqs,[x,y,z],[σ,ρ,β])
22+
de = ODESystem(eqs,t,[x,y,z],[σ,ρ,β])
2323
```
2424
"""
2525
struct ODESystem <: AbstractODESystem

0 commit comments

Comments
 (0)