Skip to content

Commit 96eda01

Browse files
fix typos
1 parent d571a82 commit 96eda01

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/scimlfunctions.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2281,8 +2281,8 @@ function ODEFunction{iip, specialize}(f;
22812281
DEFAULT_OBSERVED,
22822282
colorvec = __has_colorvec(f) ? f.colorvec : nothing,
22832283
sys = __has_sys(f) ? f.sys : nothing,
2284-
initializeprob = _has_initializeprob(f) ? f.sys : nothing,
2285-
initializeprobmap = _has_initializeprobmap(f) ? f.sys : nothing
2284+
initializeprob = __has_initializeprob(f) ? f.sys : nothing,
2285+
initializeprobmap = __has_initializeprobmap(f) ? f.sys : nothing
22862286
) where {iip,
22872287
specialize,
22882288
}
@@ -3192,8 +3192,8 @@ function DAEFunction{iip, specialize}(f;
31923192
DEFAULT_OBSERVED,
31933193
colorvec = __has_colorvec(f) ? f.colorvec : nothing,
31943194
sys = __has_sys(f) ? f.sys : nothing,
3195-
initializeprob = _has_initializeprob(f) ? f.sys : nothing,
3196-
initializeprobmap = _has_initializeprobmap(f) ? f.sys : nothing) where {iip,
3195+
initializeprob = __has_initializeprob(f) ? f.sys : nothing,
3196+
initializeprobmap = __has_initializeprobmap(f) ? f.sys : nothing) where {iip,
31973197
specialize
31983198
}
31993199
if jac === nothing && isa(jac_prototype, AbstractSciMLOperator)

0 commit comments

Comments
 (0)