Skip to content

Commit 7c45e39

Browse files
committed
Auto-generated commit
1 parent 13765b3 commit 7c45e39

File tree

2 files changed

+5
-4
lines changed

2 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 (2025-12-03)
7+
## Unreleased (2025-12-04)
88

99
<section class="features">
1010

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

257257
<details>
258258

259+
- [`546d714`](https://github.com/stdlib-js/stdlib/commit/546d71415bfaa6861cb8757741e1c465c7759590) - **docs:** fix example code and return annotations in TSDoc declarations _(by Philipp Burckhardt)_
259260
- [`ac675fb`](https://github.com/stdlib-js/stdlib/commit/ac675fb2564167fc1b522333a568bf5ab8a8cd33) - **bench:** refactor to use string interpolation in `array/fixed-endian-factory` [(#8693)](https://github.com/stdlib-js/stdlib/pull/8693) _(by Muskaan Shraogi)_
260261
- [`09b5fe0`](https://github.com/stdlib-js/stdlib/commit/09b5fe06008d4361b47b5f506bda4eafc7aa9d37) - **bench:** refactor to use string interpolation in `array/base/bifurcate-entries-by` [(#8694)](https://github.com/stdlib-js/stdlib/pull/8694) _(by Aman Singh)_
261262
- [`4ce0979`](https://github.com/stdlib-js/stdlib/commit/4ce097938211ea17c855b0e70a4ecb4329810542) - **bench:** refactor to use string interpolation in `array/base/bifurcate-entries` [(#8692)](https://github.com/stdlib-js/stdlib/pull/8692) _(by Aman Singh)_

shape/docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,19 @@ import { ArrayLike } from '@stdlib/types/array';
3131
* @example
3232
* var arr = [ [ 1, 2, 3 ], [ 4, 5, 6 ], [ 7, 8, 9 ] ];
3333
*
34-
* var shape = arrayShape( arr );
34+
* var sh = arrayShape( arr );
3535
* // returns [ 3, 3 ]
3636
*
3737
* @example
3838
* var arr = [ [ 1, 2, 3 ], [ 4, 5, 6 ], [ 7, 8 ] ];
3939
*
40-
* var shape = arrayShape( arr );
40+
* var sh = arrayShape( arr );
4141
* // returns [ 3 ]
4242
*
4343
* @example
4444
* var arr = [ [ 1, 2, 3 ], [ 4, 5, 6 ], null ];
4545
*
46-
* var shape = arrayShape( arr );
46+
* var sh = arrayShape( arr );
4747
* // returns [ 3 ]
4848
*/
4949
declare function arrayShape( arr: ArrayLike<any> ): Array<number>;

0 commit comments

Comments
 (0)