Skip to content

Commit df70cb1

Browse files
committed
fix format
1 parent b1ebeb6 commit df70cb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/besselj.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ end
180180
function besselj_small_arguments_orders(v, x::T) where T
181181
MaxIter = 100
182182
out = zero(T)
183-
a = inv(factorial(v)) * (x/2)^v
183+
a = (x/2)^v / factorial(v)
184184
t2 = (x/2)^2
185185
for i in 1:MaxIter
186186
out += a

0 commit comments

Comments
 (0)