Skip to content

Commit 33a0719

Browse files
Merge pull request #89 from SciML/fix-spelling-errors
Fix spelling error and add typos configuration
2 parents c415260 + 8ed8828 commit 33a0719

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.typos.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ vectorized = "vectorized"
2222

2323
# Common variable patterns in Julia/SciML
2424
ists = "ists"
25-
ispcs = "ispcs"
25+
ispcs = "ispcs"
2626
osys = "osys"
2727
rsys = "rsys"
2828
usys = "usys"
@@ -71,3 +71,9 @@ MTK = "MTK"
7171
ODE = "ODE"
7272
PDE = "PDE"
7373
SDE = "SDE"
74+
75+
# StochasticDelayDiffEq specific terms
76+
extrapolant = "extrapolant" # Mathematical term (extrapolant function)
77+
padd = "padd" # Parameter additive (variable name)
78+
currate = "currate" # Current rate (variable name)
79+
typ = "typ" # Abbreviated type (variable name)

src/integrators/interface.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ function DiffEqBase.auto_dt_reset!(integrator::SDDEIntegrator)
135135
nothing
136136
end
137137

138-
DiffEqBase.has_reinit(integrator::SDDEIntegrator) = false # TODO true - syncronize with DDE!
138+
DiffEqBase.has_reinit(integrator::SDDEIntegrator) = false # TODO true - synchronize with DDE!
139139
function DiffEqBase.reinit!(integrator::SDDEIntegrator, u0 = integrator.sol.prob.u0;
140140
t0 = integrator.sol.prob.tspan[1],
141141
tf = integrator.sol.prob.tspan[2],

0 commit comments

Comments
 (0)