From 9e29cfaa7c44424f6c51315da6c80d9fe519368b Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Sat, 16 Mar 2024 05:10:13 -0400 Subject: [PATCH] Fix typo in SDE docstring --- src/problems/sde_problems.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/problems/sde_problems.jl b/src/problems/sde_problems.jl index d869c0c1b..a8ad1b982 100644 --- a/src/problems/sde_problems.jl +++ b/src/problems/sde_problems.jl @@ -35,7 +35,7 @@ with initial condition `u0`. ### Constructors -- `SDEProblem(f::SDEFunction,g,u0,tspan,p=NullParameters();noise=WHITE_NOISE,noise_rate_prototype=nothing)` +- `SDEProblem(f::SDEFunction,u0,tspan,p=NullParameters();noise=WHITE_NOISE,noise_rate_prototype=nothing)` - `SDEProblem{isinplace,specialize}(f,g,u0,tspan,p=NullParameters();noise=WHITE_NOISE,noise_rate_prototype=nothing)` : Defines the SDE with the specified functions. The default noise is `WHITE_NOISE`. `isinplace` optionally sets whether the function is inplace or not. This is