Skip to content

Commit 6793f13

Browse files
committed
spelling
1 parent 0a3f62c commit 6793f13

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/systems/systems.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ function __structural_simplify(sys::AbstractSystem, io = nothing; simplify = fal
136136
elseif __num_isdiag_noise(sorted_g_rows)
137137
# If each column of the noise matrix has either 0 or 1 non-zero entry, then this is "diagonal noise".
138138
# In this case, the solver just takes a vector column of equations and it interprets that to
139-
# mean that each noise process is independant
139+
# mean that each noise process is independent
140140
noise_eqs = __get_num_diag_noise(sorted_g_rows)
141141
is_scalar_noise = false
142142
else

test/sdesystem.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,7 @@ end
747747
prob = SDEProblem(de, u0map, (0.0, 100.0), parammap)
748748
# SOSRI only works for diagonal and scalar noise
749749
@test_throws ErrorException solve(prob, SOSRI()).retcode==ReturnCode.Success
750-
# ImplictEM does work for non-diagonal noise
750+
# ImplicitEM does work for non-diagonal noise
751751
@test solve(prob, ImplicitEM()).retcode == ReturnCode.Success
752752
end
753753

0 commit comments

Comments
 (0)