Skip to content

Commit 73b1e58

Browse files
committed
warnsonly = true
1 parent 7bcfe6a commit 73b1e58

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

docs/make.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ makedocs(sitename = "Catalyst.jl",
3939
modules = [Catalyst, ModelingToolkit],
4040
doctest = false,
4141
clean = true,
42-
pages = pages)
42+
pages = pages,
43+
pagesonly = true,
44+
warnonly = true)
4345

4446
deploydocs(repo = "github.com/SciML/Catalyst.jl.git";
4547
push_preview = true)

docs/src/steady_state_functionality/steady_state_stability_computation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ ss_jac = steady_state_jac(sa_loop)
5151
5252
ps_1 = [:v => 2.0, :K => 0.5, :n => 3, :d => 1.0]
5353
steady_states_1 = hc_steady_states(sa_loop, ps)
54-
stability_1 = steady_state_stability(steady_states_1, sa_loop, ps_1; ss_jac=ss_jac)
54+
stability_1 = [steady_state_stability(state, sa_loop, ps_1; ss_jac = ss_jac) for state in steady_states_1]
5555
5656
ps_2 = [:v => 4.0, :K => 1.5, :n => 2, :d => 1.0]
5757
steady_states_2 = hc_steady_states(sa_loop, ps)
58-
stability_2 = steady_state_stability(steady_states_2, sa_loop, ps_2; ss_jac=ss_jac)
58+
stability_2 = [steady_state_stability(state, sa_loop, ps_2; ss_jac = ss_jac) for state in steady_states_2]
5959
nothing # hide
6060
```
6161

0 commit comments

Comments
 (0)