Skip to content

Commit 3ccf5df

Browse files
committed
fix merge
1 parent 9fe57c5 commit 3ccf5df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/besselk.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,8 +232,8 @@ function besselk_positive_args(nu, x::T) where T <: Union{Float32, Float64}
232232
# check if the standard asymptotic expansion can be used
233233
besseli_large_argument_cutoff(nu, x) && return besselk_large_argument(nu, x)
234234

235-
# check if the standard asymptotic expansion can be used:
236-
besselk_asexp_cutoff(nu, x) && return besselk_large_argument(nu, x)
235+
# check if the standard asymptotic expansion can be used
236+
besseli_large_argument_cutoff(nu, x) && return besselk_large_argument(nu, x)
237237

238238
# use uniform debye expansion if x or nu is large
239239
besselik_debye_cutoff(nu, x) && return besselk_large_orders(nu, x)

0 commit comments

Comments
 (0)