Skip to content

Commit 3dbc010

Browse files
fix: CI error
1 parent cf615cc commit 3dbc010

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/degenerate/entropy/src

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/dists/degenerate/entropy/src/main.c

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

19-
#include "stdlib/stats/base/dists/degenearate/entropy.h"
19+
#include "stdlib/stats/base/dists/degenerate/entropy.h"
2020
#include "stdlib/math/base/assert/is_nan.h"
2121

2222
/**
@@ -41,7 +41,7 @@
4141
* double y = stdlib_base_dists_degenerate_entropy( NaN );
4242
* // returns NaN
4343
*/
44-
double stdlib_base_dists_degenearate_entropy( const double mu ) {
44+
double stdlib_base_dists_degenerate_entropy( const double mu ) {
4545
if ( stdlib_base_is_nan( mu ) ) {
4646
return 0.0 / 0.0;
4747
}

0 commit comments

Comments
 (0)