Skip to content

Commit 1c5c443

Browse files
Remove last vestige of DiffEqOperators
1 parent 64ed9d2 commit 1c5c443

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/semilinear/Linear.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function update_func(A, u, p, t)
3030
A[2, 2] = 0
3131
end
3232
A0 = ones(2, 2)
33-
A = DiffEqArrayOperator(A0, update_func = update_func)
33+
A = MatrixOperator(A0, update_func = update_func)
3434
u0 = ones(2)
3535
tspan = (0.0, 30.0)
3636
prob = ODEProblem(A, u0, tspan)

0 commit comments

Comments
 (0)