Skip to content

Commit 16abd61

Browse files
committed
Auto-generated commit
1 parent fd30601 commit 16abd61

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
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 (2025-12-05)
7+
## Unreleased (2025-12-06)
88

99
<section class="features">
1010

@@ -257,6 +257,7 @@ A total of 33 issues were closed in this release:
257257

258258
<details>
259259

260+
- [`741d69e`](https://github.com/stdlib-js/stdlib/commit/741d69e63e3467605f6fb777136fcdb8dc6f8492) - **docs:** update examples in `array` TypeScript declarations [(#8836)](https://github.com/stdlib-js/stdlib/pull/8836) _(by stdlib-bot)_
260261
- [`53365b8`](https://github.com/stdlib-js/stdlib/commit/53365b8c311a4ea4bdc1b886fe890ad7bfc61d1c) - **bench:** refactor to use string interpolation in `array/base/copy` [(#8821)](https://github.com/stdlib-js/stdlib/pull/8821) _(by Aman Singh)_
261262
- [`3a0b3cc`](https://github.com/stdlib-js/stdlib/commit/3a0b3cc30d966f8739511d4f0cedc73b07376e59) - **fix:** improve `entries` return type and examples in `array/complex128` types _(by Philipp Burckhardt)_
262263
- [`582ef31`](https://github.com/stdlib-js/stdlib/commit/582ef3182ea40031f2bff23af519b1a7e7952d57) - **refactor:** wrap `blas/ext/base/gjoin` _(by Athan Reines)_

docs/types/index.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ interface Namespace {
379379
* @example
380380
* var ArrayBuffer = require( './../../buffer' );
381381
*
382-
* var buf = new ArrayBuffer( 16 );
382+
* var buf = new ArrayBuffer( 32 );
383383
* var arr = new ns.Complex128Array( buf );
384384
* // returns <Complex128Array>
385385
*
@@ -389,8 +389,8 @@ interface Namespace {
389389
* @example
390390
* var ArrayBuffer = require( './../../buffer' );
391391
*
392-
* var buf = new ArrayBuffer( 16 );
393-
* var arr = new ns.Complex128Array( buf, 8 );
392+
* var buf = new ArrayBuffer( 32 );
393+
* var arr = new ns.Complex128Array( buf, 16 );
394394
* // returns <Complex128Array>
395395
*
396396
* var len = arr.length;
@@ -399,8 +399,8 @@ interface Namespace {
399399
* @example
400400
* var ArrayBuffer = require( './../../buffer' );
401401
*
402-
* var buf = new ArrayBuffer( 32 );
403-
* var arr = new ns.Complex128Array( buf, 8, 2 );
402+
* var buf = new ArrayBuffer( 64 );
403+
* var arr = new ns.Complex128Array( buf, 16, 2 );
404404
* // returns <Complex128Array>
405405
*
406406
* var len = arr.length;

0 commit comments

Comments
 (0)