Skip to content

Commit 3667f73

Browse files
committed
Auto-generated commit
1 parent f43bf47 commit 3667f73

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -833,6 +833,7 @@ A total of 48 issues were closed in this release:
833833

834834
<details>
835835

836+
- [`35566af`](https://github.com/stdlib-js/stdlib/commit/35566af0add64775e60422fd16e50e1bec3947e7) - **docs:** fix C examples in READMEs [(#11229)](https://github.com/stdlib-js/stdlib/pull/11229) _(by anee3, Athan Reines)_
836837
- [`08f3a13`](https://github.com/stdlib-js/stdlib/commit/08f3a134dbfc9a1fee91a1d4074ae44a0e32674d) - **chore:** fix EditorConfig lint errors [(#11328)](https://github.com/stdlib-js/stdlib/pull/11328) _(by Guneet Gill)_
837838
- [`d6065f1`](https://github.com/stdlib-js/stdlib/commit/d6065f1af58925d59d168fe786ccdb2ccf3a8df0) - **chore:** fix C lint errors [(#11348)](https://github.com/stdlib-js/stdlib/pull/11348) _(by Guneet Gill, Athan Reines)_
838839
- [`cda31f5`](https://github.com/stdlib-js/stdlib/commit/cda31f53eb384a004a50c4249cb6e7d0795285d5) - **feat:** add `ndarray/base/rotr90` [(#11030)](https://github.com/stdlib-js/stdlib/pull/11030) _(by Muhammad Haris, Athan Reines)_
@@ -2421,7 +2422,7 @@ A total of 48 issues were closed in this release:
24212422

24222423
### Contributors
24232424

2424-
A total of 42 people contributed to this release. Thank you to the following contributors:
2425+
A total of 43 people contributed to this release. Thank you to the following contributors:
24252426

24262427
- Aryan kumar
24272428
- Athan Reines
@@ -2461,6 +2462,7 @@ A total of 42 people contributed to this release. Thank you to the following con
24612462
- Suyash Pathak
24622463
- Tejasvini Ramaswamy
24632464
- Tushar Bhardwaj
2465+
- anee3
24642466
- ashutoshsao
24652467
- kaushal-kumar-it
24662468
- lohithganni

base/count-falsy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2198,7 +2198,7 @@ int main( void ) {
21982198
struct ndarray *arrays[] = { x, y };
21992199

22002200
// Perform operation:
2201-
int8_t status = stdlib_ndarray_count_falsy_b_i( arrays );
2201+
int8_t status = stdlib_ndarray_count_falsy_b_i( arrays, NULL );
22022202
if ( status != 0 ) {
22032203
fprintf( stderr, "Error during computation.\n" );
22042204
exit( EXIT_FAILURE );

base/count-truthy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2198,7 +2198,7 @@ int main( void ) {
21982198
struct ndarray *arrays[] = { x, y };
21992199

22002200
// Perform operation:
2201-
int8_t status = stdlib_ndarray_count_truthy_b_i( arrays );
2201+
int8_t status = stdlib_ndarray_count_truthy_b_i( arrays, NULL );
22022202
if ( status != 0 ) {
22032203
fprintf( stderr, "Error during computation.\n" );
22042204
exit( EXIT_FAILURE );

base/flatten-shape-from/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ const int64_t ndims = 3;
153153
const int64_t shape[] = { 2, 3, 10 };
154154
int64_t out[ 2 ];
155155

156-
stdlib_ndarray_flatten_shape( ndims, shape, 1, out );
156+
stdlib_ndarray_flatten_shape_from( ndims, shape, 1, out );
157157
```
158158
159159
The function accepts the following arguments:

0 commit comments

Comments
 (0)