Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
oscardssmith authored Aug 15, 2024
1 parent 34743d2 commit 80a5e82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/OrdinaryDiffEqDifferentiation/src/linsolve_utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function dolinsolve(integrator, linsolve; A = nothing, linu = nothing, b = nothi
reinit!(linsolve; A)
else
(;u, p, t) = integrator
du = hasproperty(integrator) ? integrator.du : nothing
du = hasproperty(integrator, :du) ? integrator.du : nothing
p = (du, u, p, t)
reinit!(linsolve; A, p)
end
Expand Down

0 comments on commit 80a5e82

Please sign in to comment.