Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/basics/solution.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ derivative at each timestep `du` or the spatial discretization `x`, `y`, etc.

!!! note

In 2023 the linear indexing `sol[i]`` was deprecated. It previously had the behavior that
In 2023 the linear indexing `sol[i]` was deprecated. It previously had the behavior that
`sol[i] = sol.u[i]`. However, this is incompatible with standard `AbstractArray` interfaces,
Since if `A = VectorOfArray([[1,2],[3,4]])` and `A` is supposed to act like `[1 3; 2 4]`,
then there is a difference `A[1] = [1,2]` for the VectorOfArray while `A[1] = 1` for the
Expand Down
Loading