Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Sep 24, 2024
1 parent 74b1d19 commit 60057ca
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -1162,6 +1162,7 @@ A total of 7 people contributed to this release. Thank you to the following cont

<details>

- [`8f72b43`](https://github.com/stdlib-js/stdlib/commit/8f72b432c0fc81a78641d5689722ecc9671c6f02) - **style:** add missing spaces around parentheses _(by Philipp Burckhardt)_
- [`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)_
- [`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)_
- [`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)_
Expand Down
4 changes: 2 additions & 2 deletions base/caxpy/lib/caxpy.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

// MODULES //

var stride2offset = require('@stdlib/strided/base/stride2offset');
var ndarray = require('./ndarray.js');
var stride2offset = require( '@stdlib/strided/base/stride2offset' );
var ndarray = require( './ndarray.js' );


// MAIN //
Expand Down
2 changes: 1 addition & 1 deletion base/daxpy/lib/daxpy.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// MODULES //

var stride2offset = require( '@stdlib/strided/base/stride2offset' );
var ndarray = require('./ndarray.js');
var ndarray = require( './ndarray.js' );


// MAIN //
Expand Down
4 changes: 2 additions & 2 deletions base/zaxpy/lib/zaxpy.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

// MODULES //

var stride2offset = require('@stdlib/strided/base/stride2offset');
var ndarray = require('./ndarray.js');
var stride2offset = require( '@stdlib/strided/base/stride2offset' );
var ndarray = require( './ndarray.js' );


// MAIN //
Expand Down

0 comments on commit 60057ca

Please sign in to comment.