Skip to content

Commit f6799e4

Browse files
fix typo
1 parent f9bfffe commit f6799e4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/OrdinaryDiffEqCore/src/solve.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ function DiffEqBase.__init(
469469
reinitiailize = true
470470
saveiter = 0 # Starts at 0 so first save is at 1
471471
saveiter_dense = 0
472-
faslfirst, fsallast = get_fsalfirstlast(cache, rate_prototype)
472+
fsalfirst, fsallast = get_fsalfirstlast(cache, rate_prototype)
473473

474474
@show typeof(fsalfirst)
475475

@@ -478,7 +478,7 @@ function DiffEqBase.__init(
478478
typeof(eigen_est), typeof(EEst),
479479
QT, typeof(tdir), typeof(k), SolType,
480480
FType, cacheType,
481-
typeof(opts), typeof(faslfirst),
481+
typeof(opts), typeof(fsalfirst),
482482
typeof(last_event_error), typeof(callback_cache),
483483
typeof(initializealg), typeof(differential_vars)}(
484484
sol, u, du, k, t, tType(dt), f, p,
@@ -498,7 +498,7 @@ function DiffEqBase.__init(
498498
isout, reeval_fsal,
499499
u_modified, reinitiailize, isdae,
500500
opts, stats, initializealg, differential_vars,
501-
faslfirst, fsallast)
501+
fsalfirst, fsallast)
502502

503503
if initialize_integrator
504504
if isdae || SciMLBase.has_initializeprob(prob.f)

0 commit comments

Comments
 (0)