diff --git a/docs/src/basics/solution.md b/docs/src/basics/solution.md index dc1a5b7287..508e04aa27 100644 --- a/docs/src/basics/solution.md +++ b/docs/src/basics/solution.md @@ -90,7 +90,7 @@ sol(t) Note that the interpolating function allows for `t` to be a vector and uses this to speed up the interpolation calculations. The full API for the interpolations is ```julia -sol(t,deriv=Val{0};idxs=nothing,continuity=:left) +sol(t,Val{0};idxs=nothing,continuity=:left) ``` The optional argument `deriv` lets you choose the number `n` derivative to solve the interpolation for, defaulting with `n=0`. Note that most of the derivatives have not yet been implemented (though it's not hard, it just has to be done by hand for each algorithm. Open an issue if there's a specific one you need). `continuity` describes whether to satisfy left or right continuity when a discontinuity is saved. The default is `:left`, i.e. grab the value before the callback's change, but can be changed to `:right`. `idxs` allows you to choose the indices the interpolation should solve for. For example,