Skip to content

Commit 93cd547

Browse files
authored
Remove unused type parameter (#209)
* Remove unused type parameter * Update Project.toml
1 parent 651a928 commit 93cd547

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,6 +1,6 @@
11
name = "FiniteDifferences"
22
uuid = "26cc04aa-876d-5657-8c51-4c34ba976000"
3-
version = "0.12.24"
3+
version = "0.12.25"
44

55
[deps]
66
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"

src/methods.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,7 @@ end
557557
power::Int=1,
558558
breaktol::Real=Inf,
559559
kw_args...
560-
) where T<:AbstractFloat
560+
)
561561
562562
Use Richardson extrapolation to extrapolate a finite difference method.
563563
@@ -582,7 +582,7 @@ function extrapolate_fdm(
582582
power::Int=1,
583583
breaktol::Real=Inf,
584584
kw_args...
585-
) where T<:AbstractFloat
585+
)
586586
(power == 1 && _is_symmetric(m)) && (power = 2)
587587
return extrapolate(
588588
step -> m(f, x, step),

0 commit comments

Comments
 (0)