Skip to content

Commit 5daf7d7

Browse files
authored
Apply suggestions from code review
Co-authored-by: Athan <kgryte@gmail.com> Signed-off-by: Athan <kgryte@gmail.com>
1 parent 7e2a1be commit 5daf7d7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • lib/node_modules/@stdlib/stats/strided/distances/dcorrelation/src

lib/node_modules/@stdlib/stats/strided/distances/dcorrelation/src/addon.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ static napi_value addon( napi_env env, napi_callback_info info ) {
3939
STDLIB_NAPI_ARGV_INT64( env, strideY, argv, 4 );
4040
STDLIB_NAPI_ARGV_STRIDED_FLOAT64ARRAY( env, X, N, strideX, argv, 1 );
4141
STDLIB_NAPI_ARGV_STRIDED_FLOAT64ARRAY( env, Y, N, strideY, argv, 3 );
42-
STDLIB_NAPI_CREATE_DOUBLE( env, API_SUFFIX(stdlib_strided_dcorrelation )( N, X, strideX, Y, strideY ), v );
42+
STDLIB_NAPI_CREATE_DOUBLE( env, API_SUFFIX(stdlib_strided_dcorrelation)( N, X, strideX, Y, strideY ), v );
4343
return v;
4444
}
4545

@@ -59,7 +59,7 @@ static napi_value addon_method( napi_env env, napi_callback_info info ) {
5959
STDLIB_NAPI_ARGV_INT64( env, offsetY, argv, 6 );
6060
STDLIB_NAPI_ARGV_STRIDED_FLOAT64ARRAY( env, X, N, strideX, argv, 1 );
6161
STDLIB_NAPI_ARGV_STRIDED_FLOAT64ARRAY( env, Y, N, strideY, argv, 4 );
62-
STDLIB_NAPI_CREATE_DOUBLE( env, API_SUFFIX(stdlib_strided_dcorrelation_ndarray )( N, X, strideX, offsetX, Y, strideY, offsetY ), v );
62+
STDLIB_NAPI_CREATE_DOUBLE( env, API_SUFFIX(stdlib_strided_dcorrelation_ndarray)( N, X, strideX, offsetX, Y, strideY, offsetY ), v );
6363
return v;
6464
}
6565

0 commit comments

Comments
 (0)