diff --git a/docs/make.jl b/docs/make.jl index f178dbb6f..4291c573a 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -98,6 +98,7 @@ makedocs( DiffEqCallbacks, Sundials, DASKR ], + remotes = nothing, linkcheck = true, linkcheck_ignore = ["https://www.izhikevich.org/publications/spikes.htm", "https://biojulia.net/post/hardware/", diff --git a/docs/src/tutorials/sde_example.md b/docs/src/tutorials/sde_example.md index 66ae2bf5d..c62797daa 100644 --- a/docs/src/tutorials/sde_example.md +++ b/docs/src/tutorials/sde_example.md @@ -192,7 +192,7 @@ sol = SDE.solve(prob_sde_lorenz); nothing # hide ``` -```@example sde +```@example sde2 Plots.plot(sol, idxs = (1, 2, 3)) ``` @@ -232,7 +232,7 @@ sol = SDE.solve(prob, SDE.SRIW1()); nothing # hide ``` -```@example sde +```@example sde3 Plots.plot(sol) ```