Skip to content

Commit 6fae44b

Browse files
authored
Fix ParalllelDynamicalSystem in deprecations.jl (#170)
* Fix deprecations.jl * Update Project.toml
1 parent fcab6f3 commit 6fae44b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "DynamicalSystemsBase"
22
uuid = "6e36e845-645a-534a-86f2-f5d4aa5a06b4"
33
repo = "https://github.com/JuliaDynamics/DynamicalSystemsBase.jl.git"
4-
version = "3.1.0"
4+
version = "3.1.1"
55

66
[deps]
77
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"

src/deprecations.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function parallel_integrator(ds::DynamicalSystem, states; kwargs...)
4343
It also doesn't accept keywords anymore.
4444
"""
4545
)
46-
return ParalleDynamicalSystem(ds, states)
46+
return ParallelDynamicalSystem(ds, states)
4747
end
4848

4949
function projected_integrator(ds::DynamicalSystem, projection, complete_state; kwargs...)
@@ -70,4 +70,4 @@ function poincaremap(ds::DynamicalSystem, plane, Tmax=1e3; kwargs...)
7070
"""
7171
)
7272
return PoincareMap(ds, plane; Tmax, kwargs...)
73-
end
73+
end

0 commit comments

Comments
 (0)