Skip to content

Commit d057a95

Browse files
committed
fix
1 parent 12740ef commit d057a95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/network_analysis/odes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ In some cases it might be useful to generate the function defining the system of
284284

285285
Let's build the full symbolic function corresponding to our ODE system. `build_function` will return two expressions, one for a function that outputs a new vector for the result, and one for a function that modifies the input in-place. Either expression can then be evaluated to return a Julia function.
286286
```@example s1
287-
parammap = Dict([:k => 12., b => 8.])
287+
parammap = Dict([:k => 12., :b => 8.])
288288
K = fluxmat(rn, parammap)
289289
odes = N * K * Φ
290290
f_oop_expr, f_iip_expr = Symbolics.build_function(odes, species(rn))

0 commit comments

Comments
 (0)