Skip to content

Commit

Permalink
Fix docstring for gamma_inc.rgamma1pm1 (#469)
Browse files Browse the repository at this point in the history
  • Loading branch information
abhro committed Apr 3, 2024
1 parent b27f0ad commit c1ce5b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gamma_inc.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ const d80 = -.652623918595309E-03
"""
rgamma1pm1(a)
Computation of ``1/Gamma(a+1) - 1`` for `-0.5<=a<=1.5` : ``1/\\Gamma (a+1) - 1``
Uses the relation `gamma(a+1) = a*gamma(a)`.
Computation of ``1/Gamma(a+1) - 1`` for `-0.5<=a<=1.5` : ``1/\\Gamma (a+1) - 1``
Uses the relation `gamma(a+1) = a*gamma(a)`.
"""
function rgamma1pm1(a::Float64)
@assert -0.5 <= a <= 1.5
Expand Down

0 comments on commit c1ce5b1

Please sign in to comment.