Skip to content

Commit d2c2c72

Browse files
fix: errors
1 parent 881a930 commit d2c2c72

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

lib/node_modules/@stdlib/stats/base/dists/beta/kurtosis/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ int main( void ) {
235235
double alpha;
236236
double beta;
237237
double y;
238-
int i;
238+
int i;
239239
240240
for ( i = 0; i < 10; i++ ) {
241241
alpha = ( ( (double)rand() / (double)RAND_MAX )*10.0 ) + STDLIB_CONSTANT_FLOAT64_EPS;

lib/node_modules/@stdlib/stats/base/dists/beta/kurtosis/benchmark/c/benchmark.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
file line number Original file line Diff line number Diff line change
2-
@@ -0,0 +1,136 @@
31
/**
42
* @license Apache-2.0
53
*

lib/node_modules/@stdlib/stats/base/dists/beta/kurtosis/lib/native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ function kurtosis( alpha, beta ) {
6767

6868
// EXPORTS //
6969

70-
module.exports = kurtosis;
70+
module.exports = kurtosis;

lib/node_modules/@stdlib/stats/base/dists/beta/kurtosis/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2018 The Stdlib Authors.
4+
* Copyright (c) 2024 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)