diff --git a/src/systems/systems.jl b/src/systems/systems.jl index 2e99183f7a..569ef05b91 100644 --- a/src/systems/systems.jl +++ b/src/systems/systems.jl @@ -136,7 +136,7 @@ function __structural_simplify(sys::AbstractSystem, io = nothing; simplify = fal elseif __num_isdiag_noise(sorted_g_rows) # If each column of the noise matrix has either 0 or 1 non-zero entry, then this is "diagonal noise". # In this case, the solver just takes a vector column of equations and it interprets that to - # mean that each noise process is independant + # mean that each noise process is independent noise_eqs = __get_num_diag_noise(sorted_g_rows) is_scalar_noise = false else diff --git a/test/sdesystem.jl b/test/sdesystem.jl index 0e55ed567e..439b61f6b9 100644 --- a/test/sdesystem.jl +++ b/test/sdesystem.jl @@ -747,7 +747,7 @@ end prob = SDEProblem(de, u0map, (0.0, 100.0), parammap) # SOSRI only works for diagonal and scalar noise @test_throws ErrorException solve(prob, SOSRI()).retcode==ReturnCode.Success - # ImplictEM does work for non-diagonal noise + # ImplicitEM does work for non-diagonal noise @test solve(prob, ImplicitEM()).retcode == ReturnCode.Success end