Skip to content

Commit 7a8351c

Browse files
fixup! docs: update documentation with new parameter indexing API and semantics
1 parent 44fd6a6 commit 7a8351c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/complete_sii.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ We will also need a timeseries object which will store individual parameter time
379379
one manually here.
380380

381381
```@example param_timeseries
382-
struct MyDiffEqArrau
382+
struct MyDiffEqArray
383383
t::Vector{Float64}
384384
u::Vector{Vector{Float64}}
385385
end
@@ -416,7 +416,7 @@ sol = ExampleSolution2(
416416
sys,
417417
[i * ones(3) for i in 1:5], # u
418418
collect(0.0:0.25:1.0), # t
419-
[4.2, b_c_timeseries.u[end]..., d_timeseries.u[end]...] # p must contain final values
419+
[4.2, b_c_timeseries.u[end]..., d_timeseries.u[end]...], # p must contain final values
420420
[[2, 3], 4], # p_idxs
421421
ParameterTimeseriesCollection([b_c_timeseries, d_timeseries]) # p_ts
422422
)

0 commit comments

Comments
 (0)