Skip to content

Commit 09540e5

Browse files
committed
chore: apply suggestions from code review
1 parent fea5cbc commit 09540e5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

lib/node_modules/@stdlib/stats/base/dists/arcsine/cdf/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,9 +174,9 @@ double out = stdlib_base_dists_arcsine_cdf( 0.5, 0.0, 2.0 );
174174

175175
The function accepts the following arguments:
176176

177-
- **x**: `[in] double` input value
178-
- **a**: `[in] double` minimum support
179-
- **b**: `[in] double` maximum support
177+
- **x**: `[in] double` input value.
178+
- **a**: `[in] double` minimum support.
179+
- **b**: `[in] double` maximum support.
180180

181181
```c
182182
double stdlib_base_dists_arcsine_cdf( const double x, const double a, const double b );

lib/node_modules/@stdlib/stats/base/dists/arcsine/cdf/lib/native.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ var addon = require( './../src/addon.node' );
2828
/**
2929
* Evaluates the cumulative distribution function (CDF) for an arcsine distribution with minimum support `a` and maximum support `b` at a value `x`.
3030
*
31+
* @private
3132
* @param {number} x - input value
3233
* @param {number} a - minimum support
3334
* @param {number} b - maximum support

0 commit comments

Comments
 (0)