Skip to content

Commit a728296

Browse files
fix: lint error
1 parent 5a42af1 commit a728296

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
"libraries": [],
3939
"libpath": [],
4040
"dependencies": [
41+
"@stdlib/stats/base/dnanstdevpn",
4142
"@stdlib/blas/base/shared",
4243
"@stdlib/strided/base/stride2offset",
4344
"@stdlib/napi/export",

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2020 The Stdlib Authors.
4+
* Copyright (c) 2024 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.
@@ -31,7 +31,7 @@
3131
* @param strideX stride length
3232
* @return output value
3333
*/
34-
double API_SUFFIX(stdlib_strided_dnanstdev)( const CBLAS_INT N, const correction, const double *X, const CBLAS_INT strideX ) {
34+
double API_SUFFIX(stdlib_strided_dnanstdev)( const CBLAS_INT N, const double correction, const double *X, const CBLAS_INT strideX ) {
3535
const CBLAS_INT ox = stdlib_strided_stride2offset( N, strideX );
3636
return API_SUFFIX(stdlib_strided_dnanstdev_ndarray)( N, correction, X, strideX, ox );
3737
}
@@ -46,6 +46,6 @@ double API_SUFFIX(stdlib_strided_dnanstdev)( const CBLAS_INT N, const correction
4646
* @param offsetX starting index for X
4747
* @return output value
4848
*/
49-
double API_SUFFIX(stdlib_strided_dnanstdev_ndarray)( const CBLAS_INT N, const double correction, double *X, const CBLAS_INT strideX, const CBLAS_INT offsetX ) {
49+
double API_SUFFIX(stdlib_strided_dnanstdev_ndarray)( const CBLAS_INT N, const double correction, const double *X, const CBLAS_INT strideX, const CBLAS_INT offsetX ) {
5050
return stdlib_strided_dnanstdevpn( N, correction, X, strideX );
5151
}

0 commit comments

Comments
 (0)