Skip to content

Commit 6531011

Browse files
committed
Auto-generated commit
1 parent bfd26af commit 6531011

File tree

7 files changed

+10
-6
lines changed

7 files changed

+10
-6
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-09-22)
7+
## Unreleased (2025-09-29)
88

99
<section class="features">
1010

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

257257
<details>
258258

259+
- [`d94514b`](https://github.com/stdlib-js/stdlib/commit/d94514bc9418f5b42df6233204d5005d53af00ca) - **docs:** clean-up TSDoc declaration comments _(by Philipp Burckhardt)_
260+
- [`07459d3`](https://github.com/stdlib-js/stdlib/commit/07459d3be48a57aac6cc018cbb456749fad79f6a) - **chore:** remove private annotations _(by Philipp Burckhardt)_
259261
- [`2b52cb2`](https://github.com/stdlib-js/stdlib/commit/2b52cb2762dd0c715a444a6dd65f7de8cfcbcf3f) - **docs:** propagate fixes in TSDoc example code to namespace declarations [(#8126)](https://github.com/stdlib-js/stdlib/pull/8126) _(by stdlib-bot)_
260262
- [`5cf5331`](https://github.com/stdlib-js/stdlib/commit/5cf533172ba0fb480dcdbbe03861cfc14aded211) - **feat:** update `array/base` TypeScript declarations _(by Philipp Burckhardt)_
261263
- [`c92ba2d`](https://github.com/stdlib-js/stdlib/commit/c92ba2d92c3ae4ea40f9b86fc5d620d7f9579f55) - **docs:** clean-up code in TSDoc examples and remove self-requires _(by Philipp Burckhardt)_

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,7 @@ Yaswanth Kosuru <[email protected]>
223223
Yernar Yergaziyev <[email protected]>
224224
Yugal Kaushik <[email protected]>
225225
Yuvi Mittal <[email protected]>
226+
Zuhair Ahmad <[email protected]>
226227
deepak427 <[email protected]>
227228
devshree-bhati <[email protected]>
228229

bool/docs/types/test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ import BooleanArray = require( './index' );
2424
/**
2525
* Callback function.
2626
*
27-
* @private
2827
* @param v - value
2928
* @returns input value
3029
*/

complex128/docs/types/test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ import Complex128Array = require( './index' );
2727
/**
2828
* Callback function.
2929
*
30-
* @private
3130
* @param v - input value
3231
* @returns output value
3332
*/

complex64/docs/types/test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ import Complex64Array = require( './index' );
2727
/**
2828
* Callback function.
2929
*
30-
* @private
3130
* @param v - input value
3231
* @returns output value
3332
*/

empty-like/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ declare function emptyLike( x: Array<any> ): Array<number>;
5959
* var zeros = require( '@stdlib/array/zeros' );
6060
*
6161
* var x = zeros( 2, 'float64' );
62-
* // returns <Float32Array>[ 0.0, 0.0 ]
62+
* // returns <Float64Array>[ 0.0, 0.0 ]
6363
*
6464
* var arr = emptyLike( x, 'float32' );
6565
* // returns <Float32Array>
@@ -83,7 +83,7 @@ declare function emptyLike<T extends TypedArray | ComplexTypedArray | BooleanTyp
8383
* var zeros = require( '@stdlib/array/zeros' );
8484
*
8585
* var x = zeros( 2, 'float64' );
86-
* // returns <Float32Array>[ 0.0, 0.0 ]
86+
* // returns <Float64Array>[ 0.0, 0.0 ]
8787
*
8888
* var arr = emptyLike( x, 'float32' );
8989
* // returns <Float32Array>

typed-complex/docs/types/index.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,14 @@ declare function complexarray<T extends keyof DataTypeMap = 'complex128'>( lengt
6666
* @returns complex number typed array
6767
*
6868
* @example
69+
* var Complex128Array = require( '@stdlib/array/complex128' );
70+
*
6971
* var arr = complexarray( new Complex128Array( 2 ) );
7072
* // returns <Complex128Array>
7173
*
7274
* @example
75+
* var Complex128Array = require( '@stdlib/array/complex128' );
76+
*
7377
* var arr = complexarray( new Complex128Array( 2 ), 'complex64' );
7478
* // returns <Complex64Array>
7579
*/

0 commit comments

Comments
 (0)