Skip to content

Commit 9f64cff

Browse files
committed
minor rreference fixes
1 parent 35f0aec commit 9f64cff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/src/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ etc).
8080
- [SciMLSensitivity.jl](https://github.com/SciML/SciMLSensitivity.jl) can be used to compute local sensitivities of functions containing forward model simulations.
8181

8282
#### [Features of packages built upon Catalyst](@id doc_index_features_other_packages)
83-
- Catalyst [`ReactionSystem`](@ref)s can be [imported from SBML files](@id model_file_import_export_sbml) via
83+
- Catalyst [`ReactionSystem`](@ref)s can be [imported from SBML files](@ref model_file_import_export_sbml) via
8484
[SBMLImporter.jl](https://github.com/SciML/SBMLImporter.jl) and [SBMLToolkit.jl](https://github.com/SciML/SBMLToolkit.jl),
8585
and [from BioNetGen .net files](@ref model_file_import_export_sbml_rni_net) and various stoichiometric matrix network representations
8686
using [ReactionNetworkImporters.jl](https://github.com/SciML/ReactionNetworkImporters.jl).
@@ -101,7 +101,7 @@ The Catalyst documentation is separated into sections describing Catalyst's vari
101101

102102
New users are recommended to start with either the [Introduction to Catalyst and Julia for New Julia users](@ref catalyst_for_new_julia_users) or [Introduction to Catalyst](@ref introduction_to_catalyst) sections (depending on whether they are familiar with Julia programming or not). This should be enough to carry out many basic Catalyst workflows.
103103

104-
This documentation contains code which is dynamically run whenever it is built. If you copy the code and run it in your Julia environment it should work. The exact Julia environment that is used in this documentation can be found [here](@ref doc_home_reproducibility).
104+
This documentation contains code which is dynamically run whenever it is built. If you copy the code and run it in your Julia environment it should work. The exact Julia environment that is used in this documentation can be found [here](@ref doc_index_reproducibility).
105105

106106
For most code blocks in this documentation, the output of the last line of code is printed at the of the block, e.g.
107107
```@example home_display
@@ -224,7 +224,7 @@ dV(t) &= \left(g \cdot Gᴾ(t)\right) dt
224224
```
225225
where the $dW_1(t)$ and $dW_2(t)$ terms represent independent Brownian Motions, encoding the noise added by the Chemical Langevin Equation. Finally, we can simulate and plot the results.
226226
```@example home_elaborate_example
227-
using StochasticDiffEq
227+
using StochasticDiffEq, Plots
228228
sol = solve(sprob, EM(); dt = 0.05)
229229
sol = solve(sprob, EM(); dt = 0.05, seed = 1234) # hide
230230
plot(sol; xguide = "Time (au)", lw = 2)

0 commit comments

Comments
 (0)