Skip to content

Commit 003ebac

Browse files
committed
Auto-generated commit
1 parent aed26d2 commit 003ebac

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -717,6 +717,7 @@ A total of 82 issues were closed in this release:
717717

718718
<details>
719719

720+
- [`0472076`](https://github.com/stdlib-js/stdlib/commit/04720767c484e6277ad9411dff3dc5a116c31378) - **docs:** remove duplicated words in documentation and comments _(by Philipp Burckhardt)_
720721
- [`4418e62`](https://github.com/stdlib-js/stdlib/commit/4418e626e0a3ec318b6451f4e3b3397b0d43c6f2) - **test:** fix broken tests _(by Athan Reines)_
721722
- [`4ae9a8a`](https://github.com/stdlib-js/stdlib/commit/4ae9a8a3077bbd8ace12af0e8be28dc750d122e0) - **chore:** clean-up _(by Athan Reines)_
722723
- [`612180d`](https://github.com/stdlib-js/stdlib/commit/612180d3f3bdb24cdb8d4c6a3882ce85ba309dac) - **chore:** clean-up _(by Athan Reines)_

base/special/kernel-betainc/lib/beta_small_b_large_a_series.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ var regularizedGammaPrefix = require( './regularized_gamma_prefix.js' );
4848

4949
// VARIABLES //
5050

51-
var p = new Array( 30 );
51+
var p = new Array( 30 ); // eslint-disable-line stdlib/no-new-array
5252

5353

5454
// MAIN //
@@ -96,7 +96,7 @@ function betaSmallBLargeASeries( a, b, x, y, s0, mult, normalized ) {
9696
}
9797
u = -t * lx;
9898

99-
// And from from 9.2:
99+
// And from 9.2:
100100
h = regularizedGammaPrefix( b, u );
101101
if ( h <= MIN_VALUE ) {
102102
return s0;

0 commit comments

Comments
 (0)