Skip to content

Commit

Permalink
change kwarg name
Browse files Browse the repository at this point in the history
  • Loading branch information
jClugstor committed Dec 10, 2024
1 parent c25bbd4 commit 859b216
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/problems/ode_problems.jl
Original file line number Diff line number Diff line change
Expand Up @@ -514,9 +514,9 @@ end


struct ODEAliases <: AbstractAliasSpecifier
u0::Union{Bool,Nothing}
alias_u0::Union{Bool,Nothing}
end

function ODEAliases(;u0 = nothing)
ODEAliases(u0)
function ODEAliases(;alias_u0 = nothing)
ODEAliases(alias_u0)
end

0 comments on commit 859b216

Please sign in to comment.