Skip to content

Commit 5ea2f3c

Browse files
committed
Oof, forgot to remove _int subscript after prototyping.
1 parent d9fc0e6 commit 5ea2f3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/besselk.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ function besselk_positive_args(nu, x::T) where T <: Union{Float32, Float64}
230230
debye_cut = besselik_debye_cutoff(nu, x)
231231

232232
# check if nu is a half-integer:
233-
(isinteger(nu-1/2) && !debye_cut) && return sphericalbesselk_int(nu-1/2, x)*SQRT_PID2(T)*sqrt(x)
233+
(isinteger(nu-1/2) && !debye_cut) && return sphericalbesselk(nu-1/2, x)*SQRT_PID2(T)*sqrt(x)
234234

235235
# use uniform debye expansion if x or nu is large
236236
debye_cut && return besselk_large_orders(nu, x)

0 commit comments

Comments
 (0)