Skip to content

Commit b729351

Browse files
authored
chore: apply suggestions from code review
Signed-off-by: Philipp Burckhardt <pburckhardt@outlook.com>
1 parent ff06130 commit b729351

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/stats/base/dists/hypergeometric/pmf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ The function accepts the following arguments:
200200
- **n**: `[in] int32_t` number of draws.
201201

202202
```c
203-
double stdlib_base_dists_hypergeometric_pmf ( const double x, const int32_t N, const int32_t K, const int32_t n );
203+
double stdlib_base_dists_hypergeometric_pmf( const double x, const int32_t N, const int32_t K, const int32_t n );
204204
```
205205
206206
</section>

lib/node_modules/@stdlib/stats/base/dists/hypergeometric/pmf/test/test.native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ var EPS = require( '@stdlib/constants/float64/eps' );
3030

3131
// VARIABLES //
3232

33-
var pmf = tryRequire(resolve(__dirname, './../lib/native.js'));
33+
var pmf = tryRequire( resolve( __dirname, './../lib/native.js' ) );
3434
var opts = {
35-
'skip': (pmf instanceof Error)
35+
'skip': ( pmf instanceof Error )
3636
};
3737

3838

0 commit comments

Comments
 (0)