Skip to content

Commit c98d810

Browse files
committed
Auto-generated commit
1 parent 25117f2 commit c98d810

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-08-15)
7+
## Unreleased (2025-08-16)
88

99
<section class="features">
1010

@@ -149,6 +149,7 @@
149149

150150
### Bug Fixes
151151

152+
- [`4d6978d`](https://github.com/stdlib-js/stdlib/commit/4d6978d4d38a3b44266a22199a81e8eb848741fb) - correct argument order for iid_d in `math/base/napi/ternary` NAPI function
152153
- [`3eea4f7`](https://github.com/stdlib-js/stdlib/commit/3eea4f78d4cfeae6f9dbf10b0c21175a65e5e07b) - add missing includes
153154
- [`fc42d47`](https://github.com/stdlib-js/stdlib/commit/fc42d478aac742422f2a8073e168ecaa94c6ac35) - use a generic
154155
- [`2a0ea7f`](https://github.com/stdlib-js/stdlib/commit/2a0ea7feb22806685fef9eac8a32d7012dab7adc) - use correct package names in package.json
@@ -560,6 +561,7 @@ A total of 60 issues were closed in this release:
560561

561562
<details>
562563

564+
- [`4d6978d`](https://github.com/stdlib-js/stdlib/commit/4d6978d4d38a3b44266a22199a81e8eb848741fb) - **fix:** correct argument order for iid_d in `math/base/napi/ternary` NAPI function _(by Philipp Burckhardt)_
563565
- [`6f85067`](https://github.com/stdlib-js/stdlib/commit/6f8506775cdf2b3edf740216340ff7a0a82677dc) - **test:** fix malformed test descriptions from strictEqual migration _(by Philipp Burckhardt)_
564566
- [`7add020`](https://github.com/stdlib-js/stdlib/commit/7add0201c13e56a0381926ccfd4073c84eaf2ed4) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_
565567
- [`fc438e0`](https://github.com/stdlib-js/stdlib/commit/fc438e0edbad0689d6923d6f3edb959b96597662) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_

base/napi/ternary/src/iid_d.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,15 @@ napi_value stdlib_math_base_napi_iid_d( napi_env env, napi_callback_info info, d
7979
}
8080

8181
int32_t x;
82-
status = napi_get_value_int32( env, argv[ 1 ], &x );
82+
status = napi_get_value_int32( env, argv[ 0 ], &x );
8383
assert( status == napi_ok );
8484

8585
int32_t y;
86-
status = napi_get_value_int32( env, argv[ 2 ], &y );
86+
status = napi_get_value_int32( env, argv[ 1 ], &y );
8787
assert( status == napi_ok );
8888

8989
double z;
90-
status = napi_get_value_double( env, argv[ 0 ], &z );
90+
status = napi_get_value_double( env, argv[ 2 ], &z );
9191
assert( status == napi_ok );
9292

9393
napi_value v;

0 commit comments

Comments
 (0)