diff --git a/diffrax/_solver/milstein.py b/diffrax/_solver/milstein.py index e5853762..80d3b0f1 100644 --- a/diffrax/_solver/milstein.py +++ b/diffrax/_solver/milstein.py @@ -169,7 +169,7 @@ def step( # ΔwΔw_{j1 j2} = Δw_{j1} Δw_{j2} if j1 != j2; # ΔwΔw_{j j} = Δw_{j} Δw_{j} - Δt. # - # In particular note that that "-Δt" means ΔwΔw is not rank-1. This is what + # In particular note that "-Δt" means ΔwΔw is not rank-1. This is what # makes the Stratonovich case so much simpler: the only mathematical difference # there is that the "-Δt" isn't present, but then dwdw decomposes, which # simplifies the computation immensely.