Skip to content

Commit 440112c

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

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

.gitignore

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,12 @@ jsconfig.json
188188
# Other editor files #
189189
######################
190190
.idea/
191-
192-
# Cursor #
193-
##########
191+
.cursor
194192
.cursorignore
193+
.windsurfrules
194+
.clinerules
195+
196+
# AI coding agents #
197+
####################
198+
CLAUDE.md
199+
GEMINI.md

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-06)
7+
## Unreleased (2025-09-10)
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+
- [`3b9d924`](https://github.com/stdlib-js/stdlib/commit/3b9d92469dabccb5e006dc55086752b5cdfbc7ed) - **docs:** add missing quotes _(by Philipp Burckhardt)_
250251
- [`8b0b780`](https://github.com/stdlib-js/stdlib/commit/8b0b78084a2ff5d7a76ba3c5945b13d7f0906f4f) - **docs:** fix TypeScript declaration linting errors _(by Philipp Burckhardt)_
251252
- [`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)_
252253
- [`5acfd64`](https://github.com/stdlib-js/stdlib/commit/5acfd64326637640433a7e3ffc5d101db23ab1d8) - **docs:** fix example code _(by Philipp Burckhardt)_

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ Frank Kovacs <[email protected]>
6666
GK Bishnoi <[email protected]>
6767
GURU PRASAD SHARMA <[email protected]>
6868
69+
Gaurav Kaushik <[email protected]>
6970
Gautam Kaushik <[email protected]>
7071
Gautam sharma <[email protected]>
7172

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;
@@ -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;
@@ -190,7 +190,7 @@ declare function scalar2array( value: number, dtype: 'uint8' ): Uint8Array;
190190
* @returns output array
191191
*
192192
* @example
193-
* var x = scalar2array( 1, uint8c' );
193+
* var x = scalar2array( 1, 'uint8c' );
194194
* // returns <Uint8ClampedArray>[]
195195
*/
196196
declare function scalar2array( value: number, dtype: 'uint8c' ): Uint8ClampedArray;

0 commit comments

Comments
 (0)