Skip to content

Commit ab5ac27

Browse files
fix: CI error
1 parent ef84163 commit ab5ac27

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/stats/base/dnanmeanpn/src/addon.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) 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.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838
* @param stride stride length
3939
* @return output value
4040
*/
41-
double API_SUFFIX(stdlib_strided_dnanmeanors)( const CBLAS_INT N, const double *X, const CBLAS_INT strideX ) {
41+
double API_SUFFIX(stdlib_strided_dnanmeanpn)( const CBLAS_INT N, const double *X, const CBLAS_INT strideX ) {
4242
const CBLAS_INT ox = stdlib_strided_stride2offset( N, strideX );
43-
return API_SUFFIX(stdlib_strided_dnanmeanors_ndarray)( N, X, strideX, ox );
43+
return API_SUFFIX(stdlib_strided_dnanmeanpn_ndarray)( N, X, strideX, ox );
4444
}
4545

4646
/**

0 commit comments

Comments
 (0)