Skip to content

Commit 1126744

Browse files
committed
fix missing ends
1 parent b80860c commit 1126744

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/bessely.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,12 +271,14 @@ function bessely(nu::Integer, x::T) where T
271271
else
272272
return throw(DomainError(x, "Complex result returned for real arguments. Complex arguments are currently not supported"))
273273
#return Ynu * sg + 2im * sg * besselj_positive_args(abs_nu, abs_x)
274+
end
274275
else
275276
if x >= zero(T)
276277
return Ynu * sg
277278
else
278279
return throw(DomainError(x, "Complex result returned for real arguments. Complex arguments are currently not supported"))
279280
#return Ynu + 2im * besselj_positive_args(abs_nu, abs_x)
281+
end
280282
end
281283
end
282284

0 commit comments

Comments
 (0)