Skip to content

Commit 436d109

Browse files
committed
Auto-generated commit
1 parent 09f3efe commit 436d109

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,7 @@
382382

383383
### Bug Fixes
384384

385+
- [`97d7e56`](https://github.com/stdlib-js/stdlib/commit/97d7e567e463ab9942c9d1188bc0c5786827e09b) - update return type
385386
- [`6f6da0a`](https://github.com/stdlib-js/stdlib/commit/6f6da0afaa12ef31691ae659f6a005f140d81cd1) - add missing argument to format strings
386387
- [`2b5e5c6`](https://github.com/stdlib-js/stdlib/commit/2b5e5c6be9fe4b9f1a0e235a6b50c4fe5554707b) - account for edge case where `n <= 0`
387388
- [`fd9991b`](https://github.com/stdlib-js/stdlib/commit/fd9991b94b618d3adfd81f177ddda412388bf1df) - remove conditional
@@ -537,6 +538,7 @@ A total of 24 issues were closed in this release:
537538

538539
<details>
539540

541+
- [`97d7e56`](https://github.com/stdlib-js/stdlib/commit/97d7e567e463ab9942c9d1188bc0c5786827e09b) - **fix:** update return type _(by Athan Reines)_
540542
- [`6f6da0a`](https://github.com/stdlib-js/stdlib/commit/6f6da0afaa12ef31691ae659f6a005f140d81cd1) - **fix:** add missing argument to format strings _(by Philipp Burckhardt)_
541543
- [`f709450`](https://github.com/stdlib-js/stdlib/commit/f70945029cc35797e0af5ec1de2fda369b5c222a) - **docs:** correct grammar in JSDoc comments _(by Philipp Burckhardt)_
542544
- [`44c2368`](https://github.com/stdlib-js/stdlib/commit/44c23684fef779a6e62dc18dd01192b192785a41) - **feat:** add `ndarray/base/dtype-alignment` _(by Athan Reines)_

base/dtype-alignment/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
* int8_t out = stdlib_ndarray_dtype_alignment( STDLIB_NDARRAY_FLOAT64 );
3939
* // returns 8
4040
*/
41-
uint8_t stdlib_ndarray_dtype_alignment( enum STDLIB_NDARRAY_DTYPE dtype ) {
41+
int8_t stdlib_ndarray_dtype_alignment( enum STDLIB_NDARRAY_DTYPE dtype ) {
4242
switch ( dtype ) {
4343
case STDLIB_NDARRAY_FLOAT64:
4444
return STDLIB_NDARRAY_FLOAT64_ALIGNMENT;

0 commit comments

Comments
 (0)