Skip to content

Commit fdcffa3

Browse files
fix: CI error
1 parent 1146088 commit fdcffa3

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

lib/node_modules/@stdlib/stats/base/dnanvariancewd/manifest.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
],
3939
"libpath": [],
4040
"dependencies": [
41-
"@stdlib/stats/base/dnanvariancewd",
4241
"@stdlib/napi/export",
4342
"@stdlib/napi/argv",
4443
"@stdlib/napi/argv-int64",

lib/node_modules/@stdlib/stats/base/dnanvariancewd/src/addon.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ static napi_value addon( napi_env env, napi_callback_info info ) {
3737
STDLIB_NAPI_ARGV_INT64( env, N, argv, 0 );
3838
STDLIB_NAPI_ARGV_INT64( env, stride, argv, 3 );
3939
STDLIB_NAPI_ARGV_DOUBLE( env, correction, argv, 1 );
40-
STDLIB_NAPI_ARGV_STRIDED_FLOAT64ARRAY( env, X, N, correction, stride, argv, 2 );
40+
STDLIB_NAPI_ARGV_STRIDED_FLOAT64ARRAY( env, X, N, stride, argv, 2 );
4141
STDLIB_NAPI_CREATE_DOUBLE( env, stdlib_strided_dnanvariancewd( N, correction, X, stride ), v );
4242
return v;
4343
}

0 commit comments

Comments
 (0)