Skip to content

Commit 84ee99d

Browse files
committed
init
1 parent ce89f9a commit 84ee99d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Pkg.add("Catalyst")
8989
To solve Catalyst models and visualize solutions, it is also recommended to
9090
install DifferentialEquations.jl and Plots.jl
9191
```julia
92-
Pkg.add("DifferentialEquations")
92+
Pkg.add("OrdinaryDiffEq")
9393
Pkg.add("Plots")
9494
```
9595

@@ -114,7 +114,7 @@ which in Jupyter notebooks will give the figure
114114

115115
To generate and solve a mass action ODE version of the model we use
116116
```@example ind1
117-
using DifferentialEquations
117+
using OrdinaryDiffEq
118118
p = [:α => .1/1000, :β => .01]
119119
tspan = (0.0,250.0)
120120
u0 = [:S => 999.0, :I => 1.0, :R => 0.0]

0 commit comments

Comments
 (0)