Skip to content

Commit b4175e2

Browse files
committed
fix: rename function from ndapx to dapx for consistency
1 parent db33d47 commit b4175e2

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/blas/ext/base/ndarray/dapx/lib

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/ext/base/ndarray/dapx/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ var getData = require( '@stdlib/ndarray/base/data-buffer' );
4848
* var y = x.data;
4949
* // returns <Float64Array>[ 6.0, 7.0, 8.0, 9.0 ]
5050
*/
51-
function ndapx( x, alpha ) {
51+
function dapx( x, alpha ) {
5252
var buf;
5353
var sx;
5454
var ox;
@@ -69,4 +69,4 @@ function ndapx( x, alpha ) {
6969

7070
// EXPORTS //
7171

72-
module.exports = ndapx;
72+
module.exports = dapx;

0 commit comments

Comments
 (0)