Skip to content

Commit 60057ca

Browse files
committed
Auto-generated commit
1 parent 74b1d19 commit 60057ca

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1162,6 +1162,7 @@ A total of 7 people contributed to this release. Thank you to the following cont
11621162

11631163
<details>
11641164

1165+
- [`8f72b43`](https://github.com/stdlib-js/stdlib/commit/8f72b432c0fc81a78641d5689722ecc9671c6f02) - **style:** add missing spaces around parentheses _(by Philipp Burckhardt)_
11651166
- [`9d55639`](https://github.com/stdlib-js/stdlib/commit/9d55639aa76472d280ee6c613cd338ee16552cd6) - **fix:** update C function names in `blas/ext/base/sfill` to prevent name collisions [(#2945)](https://github.com/stdlib-js/stdlib/pull/2945) _(by Muhammad Haris)_
11661167
- [`1f49ad9`](https://github.com/stdlib-js/stdlib/commit/1f49ad98dfcee0a15a8bd3873508f2eaedd88807) - **fix:** update C function names in `blas/ext/base/dfill` to prevent name collisions [(#2944)](https://github.com/stdlib-js/stdlib/pull/2944) _(by Muhammad Haris)_
11671168
- [`5467341`](https://github.com/stdlib-js/stdlib/commit/54673410322991eb15e9c48c2e6f43912cec3b44) - **fix:** update C function names in `blas/ext/base/cfill` to prevent name collisions [(#2943)](https://github.com/stdlib-js/stdlib/pull/2943) _(by Muhammad Haris)_

base/caxpy/lib/caxpy.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020

2121
// MODULES //
2222

23-
var stride2offset = require('@stdlib/strided/base/stride2offset');
24-
var ndarray = require('./ndarray.js');
23+
var stride2offset = require( '@stdlib/strided/base/stride2offset' );
24+
var ndarray = require( './ndarray.js' );
2525

2626

2727
// MAIN //

base/daxpy/lib/daxpy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// MODULES //
2222

2323
var stride2offset = require( '@stdlib/strided/base/stride2offset' );
24-
var ndarray = require('./ndarray.js');
24+
var ndarray = require( './ndarray.js' );
2525

2626

2727
// MAIN //

base/zaxpy/lib/zaxpy.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020

2121
// MODULES //
2222

23-
var stride2offset = require('@stdlib/strided/base/stride2offset');
24-
var ndarray = require('./ndarray.js');
23+
var stride2offset = require( '@stdlib/strided/base/stride2offset' );
24+
var ndarray = require( './ndarray.js' );
2525

2626

2727
// MAIN //

0 commit comments

Comments
 (0)