Skip to content

Commit b4177cc

Browse files
authored
chore: apply suggestions from code review
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent 3b5953d commit b4177cc

File tree

3 files changed

+2
-7
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/arcsine/stdev

3 files changed

+2
-7
lines changed

lib/node_modules/@stdlib/stats/base/dists/arcsine/stdev/include/stdlib/stats/base/dists/arcsine/stdev.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,6 @@ extern "C" {
2828

2929
/**
3030
* Returns the standard deviation of an arcsine distribution with minimum support `a` and maximum support `b`.
31-
*
32-
* @param a minimum support
33-
* @param b maximum support
34-
* @return standard deviation of the distribution
3531
*/
3632
double stdlib_base_dists_arcsine_stdev( const double a, const double b );
3733

lib/node_modules/@stdlib/stats/base/dists/arcsine/stdev/src/addon.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
* limitations under the License.
1717
*/
1818

19-
#include "stdlib/math/base/napi/binary.h"
2019
#include "stdlib/stats/base/dists/arcsine/stdev.h"
20+
#include "stdlib/math/base/napi/binary.h"
2121

2222
// cppcheck-suppress shadowFunction
2323
STDLIB_MATH_BASE_NAPI_MODULE_DD_D( stdlib_base_dists_arcsine_stdev )

lib/node_modules/@stdlib/stats/base/dists/arcsine/stdev/src/main.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,9 @@
1616
* limitations under the License.
1717
*/
1818

19-
#include "stdlib/math/base/assert/is_nan.h"
2019
#include "stdlib/stats/base/dists/arcsine/stdev.h"
20+
#include "stdlib/math/base/assert/is_nan.h"
2121

22-
// CONSTANTS
2322
#define SQRT1OVER8 0.35355339059327373 // sqrt(1.0 / 8.0)
2423

2524
/**

0 commit comments

Comments
 (0)