Skip to content

Commit

Permalink
Fix/Remove v1.5 keyword argument syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas-schulze committed Sep 10, 2020
1 parent f29624a commit 298a91d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/problem.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ initialvalue(prob) = prob.u0
Create a new problem having the initial value `u0` and time span `tspan`.
"""
remake(prob::DiffEqBase.DEProblem; u0, tspan) = DiffEqBase.remake(prob; u0, tspan)
remake(prob::DiffEqBase.DEProblem; u0, tspan) = DiffEqBase.remake(prob; u0=u0, tspan=tspan)

0 comments on commit 298a91d

Please sign in to comment.