Skip to content

Commit d493d42

Browse files
chore: minor clean up
1 parent c884529 commit d493d42

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

lib/node_modules/@stdlib/stats/base/dnanmeanors/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ console.log( v );
184184

185185
#### stdlib_strided_dnanmeanors( N, \*X, strideX )
186186

187-
Computes the arithmetic mean of a double-precision floating-point strided array `x`, ignoring `NaN` values and using ordinary recursive summation.
187+
Computes the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values and using ordinary recursive summation.
188188

189189
```c
190190
const double x[] = { 1.0, 2.0, 0.0/0.0, 3.0, 0.0/0.0, 4.0, 5.0, 6.0, 0.0/0.0, 7.0, 8.0, 0.0/0.0 };

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,4 +97,3 @@
9797
}
9898
]
9999
}
100-

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ static napi_value addon( napi_env env, napi_callback_info info ) {
3535
STDLIB_NAPI_ARGV_INT64( env, N, argv, 0 );
3636
STDLIB_NAPI_ARGV_INT64( env, strideX, argv, 2 );
3737
STDLIB_NAPI_ARGV_STRIDED_FLOAT64ARRAY( env, X, N, strideX, argv, 1 );
38-
STDLIB_NAPI_CREATE_DOUBLE( env, stdlib_strided_dnanmeanors( N, X, strideX ), v );
38+
STDLIB_NAPI_CREATE_DOUBLE( env, API_SUFFIX( stdlib_strided_dnanmeanors )( N, X, strideX ), v );
3939
return v;
4040
}
4141

@@ -52,7 +52,7 @@ static napi_value addon_method( napi_env env, napi_callback_info info ) {
5252
STDLIB_NAPI_ARGV_INT64( env, strideX, argv, 2 );
5353
STDLIB_NAPI_ARGV_INT64( env, offsetX, argv, 3 );
5454
STDLIB_NAPI_ARGV_STRIDED_FLOAT64ARRAY( env, X, N, strideX, argv, 1 );
55-
STDLIB_NAPI_CREATE_DOUBLE( env, stdlib_strided_dnanmeanors_ndarray( N, X, strideX, offsetX ), v );
55+
STDLIB_NAPI_CREATE_DOUBLE( env, API_SUFFIX( stdlib_strided_dnanmeanors_ndarray )( N, X, strideX, offsetX ), v );
5656
return v;
5757
}
5858

lib/node_modules/@stdlib/stats/base/dnanmeanors/src/main.c

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) 2025 The Stdlib Authors.
4+
* Copyright (c) 2020 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)