Skip to content

Commit

Permalink
Update special2.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreySarnoff authored May 30, 2019
1 parent 1ca196b commit c2721c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/float/special2.jl
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ for F in (:airyai, :airyaiprime, :airybi, :airybiprime)
@eval begin
function $F(x::ArbFloat{P}, prec::Int=P) where {P}
r = ArbReal{P}(x)
r = airy(r, prec)
r = $F(r, prec)
z = ArbFloat{P}(r)
return r
end
Expand Down

2 comments on commit c2721c6

@JeffreySarnoff
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/1073

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.1 -m "<description of version>" c2721c665af2a14cf72e3f955e7583b56035e2bf
git push origin v0.5.1

Please sign in to comment.