Skip to content

Commit

Permalink
patch system names
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Oct 9, 2023
1 parent 314bb1d commit 298a9a5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ModelingToolkit"
uuid = "961ee093-0014-501f-94e3-6117800e7a78"
authors = ["Yingbo Ma <[email protected]>", "Chris Rackauckas <[email protected]> and contributors"]
version = "8.72.0"
version = "8.72.1"

[deps]
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"
Expand Down
8 changes: 4 additions & 4 deletions docs/src/tutorials/ode_modeling.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,12 +154,12 @@ along with the state variable. Note that this has to be requested explicitly
like as follows:

```@example ode2
prob = ODEProblem(fol_simplified,
[fol_simplified.x => 0.0],
prob = ODEProblem(fol,
[fol.x => 0.0],
(0.0, 10.0),
[fol_simplified.τ => 3.0])
[fol.τ => 3.0])
sol = solve(prob)
plot(sol, vars = [fol_simplified.x, fol_simplified.RHS])
plot(sol, vars = [fol.x, fol.RHS])
```

## Named Indexing of Solutions
Expand Down

0 comments on commit 298a9a5

Please sign in to comment.