Skip to content

Commit 0582c74

Browse files
committed
Auto-generated commit
1 parent 1458f2c commit 0582c74

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -38559,6 +38559,7 @@ A total of 50 people contributed to this release. Thank you to the following con
3855938559

3856038560
<details>
3856138561

38562+
- [`2366870`](https://github.com/stdlib-js/stdlib/commit/23668709f2da0d4a3e3f5eb401eebaf03eb328cd) - **refactor:** use const double for parameter in `stats/base/dists/betaprime/logpdf` [(#6452)](https://github.com/stdlib-js/stdlib/pull/6452) _(by Neeraj Pathak)_
3856238563
- [`3aca840`](https://github.com/stdlib-js/stdlib/commit/3aca840adab39372b0b641f9bf99e0b192e6150a) - **remove:** remove `stats/base/smidrange` _(by Aayush Khanna)_
3856338564
- [`c1d3885`](https://github.com/stdlib-js/stdlib/commit/c1d3885204c3351bc3298b2f7c18b4003ae060df) - **refactor:** update paths _(by Aayush Khanna)_
3856438565
- [`28636bf`](https://github.com/stdlib-js/stdlib/commit/28636bfa1618598f1705f13f96ead0a9ec305d35) - **remove:** remove `stats/base/smidrange` from namespace _(by Aayush Khanna)_

base/dists/betaprime/logpdf/src/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* double y = stdlib_base_dists_beta_logpdf( 0.5, 1.0, 1.0 );
3535
* // returns ~-0.811
3636
*/
37-
double stdlib_base_dists_betaprime_logpdf( const double x, double alpha, const double beta ) {
37+
double stdlib_base_dists_betaprime_logpdf( const double x, const double alpha, const double beta ) {
3838
double out;
3939
if (
4040
stdlib_base_is_nan( x ) ||

0 commit comments

Comments
 (0)