Skip to content

Commit 01845be

Browse files
committed
Auto-generated commit
1 parent c200b9e commit 01845be

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 2 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 (2024-12-25)
7+
## Unreleased (2025-01-02)
88

99
<section class="features">
1010

@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`095586c`](https://github.com/stdlib-js/stdlib/commit/095586cf396939fe7379ea9cee817bc0d77e2fea) - **style:** fix indentation _(by Philipp Burckhardt)_
2526
- [`6ec8074`](https://github.com/stdlib-js/stdlib/commit/6ec8074bd6e6c406a743cb8a18a7eb220efa7423) - **feat:** add C ndarray interface and refactor implementation for `stats/base/dcumax` [(#4137)](https://github.com/stdlib-js/stdlib/pull/4137) _(by Aayush Khanna, Athan Reines)_
2627
- [`62364f6`](https://github.com/stdlib-js/stdlib/commit/62364f62ea823a3b52c2ad25660ecd80c71f8f36) - **style:** fix C comment alignment _(by Philipp Burckhardt)_
2728
- [`2ea848b`](https://github.com/stdlib-js/stdlib/commit/2ea848b62b686e1e9d861f7df25ece23a7d80798) - **style:** update to use tabs for indentation _(by Philipp Burckhardt)_

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ See [LICENSE][stdlib-license].
368368
369369
## Copyright
370370
371-
Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
371+
Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
372372
373373
</section>
374374

src/addon.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ static napi_value addon_method( napi_env env, napi_callback_info info ) {
5252
STDLIB_NAPI_ARGV( env, info, argv, argc, 7 );
5353
STDLIB_NAPI_ARGV_INT64( env, N, argv, 0 );
5454
STDLIB_NAPI_ARGV_INT64( env, strideX, argv, 2 );
55-
STDLIB_NAPI_ARGV_INT64( env, strideY, argv, 5 );
55+
STDLIB_NAPI_ARGV_INT64( env, strideY, argv, 5 );
5656
STDLIB_NAPI_ARGV_INT64( env, offsetX, argv, 3 );
57-
STDLIB_NAPI_ARGV_INT64( env, offsetY, argv, 6 );
57+
STDLIB_NAPI_ARGV_INT64( env, offsetY, argv, 6 );
5858
STDLIB_NAPI_ARGV_STRIDED_FLOAT64ARRAY( env, X, N, strideX, argv, 1 );
5959
STDLIB_NAPI_ARGV_STRIDED_FLOAT64ARRAY( env, Y, N, strideY, argv, 4 );
6060
stdlib_strided_dcumax_ndarray( N, X, strideX, offsetX, Y, strideY, offsetY );

0 commit comments

Comments
 (0)