Skip to content

Commit c05c124

Browse files
committed
Auto-generated commit
1 parent 440112c commit c05c124

File tree

2 files changed

+6
-5
lines changed

2 files changed

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

99
<section class="features">
1010

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

248248
<details>
249249

250+
- [`7808da1`](https://github.com/stdlib-js/stdlib/commit/7808da1fbe8e2100ba60704afee2636fa9d5f091) - **docs:** add missing quote and replace incorrect closing curly braces _(by Philipp Burckhardt)_
250251
- [`3b9d924`](https://github.com/stdlib-js/stdlib/commit/3b9d92469dabccb5e006dc55086752b5cdfbc7ed) - **docs:** add missing quotes _(by Philipp Burckhardt)_
251252
- [`8b0b780`](https://github.com/stdlib-js/stdlib/commit/8b0b78084a2ff5d7a76ba3c5945b13d7f0906f4f) - **docs:** fix TypeScript declaration linting errors _(by Philipp Burckhardt)_
252253
- [`a36e532`](https://github.com/stdlib-js/stdlib/commit/a36e5328871d2e351a19a00e75eb0d386702e870) - **chore:** address commit comments for commit `5acfd64` [(#7919)](https://github.com/stdlib-js/stdlib/pull/7919) _(by Nakul Krishnakumar)_

from-scalar/docs/types/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ declare function scalar2array( value: number | ComplexLike, dtype: 'complex64' )
112112
* @returns output array
113113
*
114114
* @example
115-
* var x = scalar2array( 1, 'int32' };
115+
* var x = scalar2array( 1, 'int32' );
116116
* // returns <Int32Array>[ 1 ]
117117
*/
118118
declare function scalar2array( value: number, dtype: 'int32' ): Int32Array;
@@ -125,7 +125,7 @@ declare function scalar2array( value: number, dtype: 'int32' ): Int32Array;
125125
* @returns output array
126126
*
127127
* @example
128-
* var x = scalar2array( 1, 'int16' };
128+
* var x = scalar2array( 1, 'int16' );
129129
* // returns <Int16Array>[ 1 ]
130130
*/
131131
declare function scalar2array( value: number, dtype: 'int16' ): Int16Array;
@@ -138,7 +138,7 @@ declare function scalar2array( value: number, dtype: 'int16' ): Int16Array;
138138
* @returns output array
139139
*
140140
* @example
141-
* var x = scalar2array( 1, 'int8' }
141+
* var x = scalar2array( 1, 'int8' );
142142
* // returns <Int8Array>[ 1 ]
143143
*/
144144
declare function scalar2array( value: number, dtype: 'int8' ): Int8Array;
@@ -177,7 +177,7 @@ declare function scalar2array( value: number, dtype: 'uint16' ): Uint16Array;
177177
* @returns output array
178178
*
179179
* @example
180-
* var x = scalar2array( 1, 'uint8 };
180+
* var x = scalar2array( 1, 'uint8' );
181181
* // returns <Uint8Array>[ 1 ]
182182
*/
183183
declare function scalar2array( value: number, dtype: 'uint8' ): Uint8Array;

0 commit comments

Comments
 (0)