Skip to content

Commit 4bf2298

Browse files
chore: minor clean up
1 parent f8f7268 commit 4bf2298

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ The function has the following parameters:
6868

6969
- **N**: number of indexed elements.
7070
- **x**: input [`Float32Array`][@stdlib/array/float32].
71-
- **strideX**: stride Length for `x`.
71+
- **strideX**: stride length for `x`.
7272

7373
The `N` and stride parameters determine which elements in `x` are accessed at runtime. For example, to compute the [arithmetic mean][arithmetic-mean] of every other element in `x`,
7474

@@ -173,7 +173,7 @@ console.log( v );
173173

174174
#### stdlib_strided_dsmeanwd( N, \*X, strideX )
175175

176-
Computes the arithmetic mean of a single-precision floating-point strided array `x` using Welford's algorithm with extended accumulation and returning an extended precision result.
176+
Computes the arithmetic mean of a single-precision floating-point strided array using Welford's algorithm with extended accumulation and returning an extended precision result.
177177

178178
```c
179179
const float x[] = { 1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f, 8.0f };
@@ -194,7 +194,7 @@ double stdlib_strided_dsmeanwd( const CBLAS_INT N, const float *X, const CBLAS_I
194194

195195
#### stdlib_strided_dsmeanwd_ndarray( N, \*X, strideX, offsetX )
196196

197-
Computes the arithmetic mean of a single-precision floating-point strided array `x` using Welford's algorithm with extended accumulation and alternative indexing semantics and returning an extended precision result.
197+
Computes the arithmetic mean of a single-precision floating-point strided array using Welford's algorithm with extended accumulation and alternative indexing semantics and returning an extended precision result.
198198

199199
```c
200200
const float x[] = { 1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f, 8.0f };

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ static napi_value addon( napi_env env, napi_callback_info info ) {
3636
STDLIB_NAPI_ARGV_INT64( env, N, argv, 0 );
3737
STDLIB_NAPI_ARGV_INT64( env, strideX, argv, 2 );
3838
STDLIB_NAPI_ARGV_STRIDED_FLOAT32ARRAY( env, X, N, strideX, argv, 1 );
39-
STDLIB_NAPI_CREATE_DOUBLE( env, stdlib_strided_dsmeanwd( N, X, strideX ), v );
39+
STDLIB_NAPI_CREATE_DOUBLE( env, API_SUFFIX( stdlib_strided_dsmeanwd)( N, X, strideX ), v );
4040
return v;
4141
}
4242

@@ -53,7 +53,7 @@ static napi_value addon_method( napi_env env, napi_callback_info info ) {
5353
STDLIB_NAPI_ARGV_INT64( env, strideX, argv, 2 );
5454
STDLIB_NAPI_ARGV_INT64( env, offsetX, argv, 3 );
5555
STDLIB_NAPI_ARGV_STRIDED_FLOAT32ARRAY( env, X, N, strideX, argv, 1 );
56-
STDLIB_NAPI_CREATE_DOUBLE( env, stdlib_strided_dsmeanwd_ndarray( N, X, strideX, offsetX ), v );
56+
STDLIB_NAPI_CREATE_DOUBLE( env, API_SUFFIX( stdlib_strided_dsmeanwd_ndarray )( N, X, strideX, offsetX ), v );
5757
return v;
5858
}
5959

lib/node_modules/@stdlib/stats/base/dsmeanwd/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)