Skip to content

Commit

Permalink
Fix #1356
Browse files Browse the repository at this point in the history
  • Loading branch information
devmotion committed Jul 3, 2021
1 parent a6b9960 commit 61fed19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Distributions"
uuid = "31c24e10-a181-5473-b8eb-7969acd0382f"
authors = ["JuliaStats"]
version = "0.25.7"
version = "0.25.8"

[deps]
FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b"
Expand Down
2 changes: 1 addition & 1 deletion src/univariate/discrete/betabinomial.jl
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ end
# sum values of the probability mass function
cdf(d::BetaBinomial, k::Int) = integerunitrange_cdf(d, k)

for f in (:cdf, :logcdf, :logccdf)
for f in (:ccdf, :logcdf, :logccdf)
@eval begin
$f(d::BetaBinomial, k::Real) = $(Symbol(f, :_int))(d, k)
$f(d::BetaBinomial, k::Int) = $(Symbol(:integerunitrange_, f))(d, k)
Expand Down

0 comments on commit 61fed19

Please sign in to comment.