Skip to content

Commit e090677

Browse files
committed
Auto-generated commit
1 parent da2e4de commit e090677

File tree

6 files changed

+28
-8
lines changed

6 files changed

+28
-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: 12 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-08-12)
7+
## Unreleased (2025-09-08)
88

99
<section class="features">
1010

@@ -16,12 +16,23 @@
1616

1717
<!-- /.features -->
1818

19+
<section class="bug-fixes">
20+
21+
### Bug Fixes
22+
23+
- [`76883dd`](https://github.com/stdlib-js/stdlib/commit/76883dd26350489a351296785ca002838d9d39d5) - update error message
24+
25+
</section>
26+
27+
<!-- /.bug-fixes -->
28+
1929
<section class="commits">
2030

2131
### Commits
2232

2333
<details>
2434

35+
- [`76883dd`](https://github.com/stdlib-js/stdlib/commit/76883dd26350489a351296785ca002838d9d39d5) - **fix:** update error message _(by Athan Reines)_
2536
- [`952be79`](https://github.com/stdlib-js/stdlib/commit/952be79ec684a1e05c4e794b1a35a484b360a60e) - **test:** use consistent assertions _(by Athan Reines)_
2637
- [`821035c`](https://github.com/stdlib-js/stdlib/commit/821035c992e57ecadb7531c71f4bcb084b32461c) - **refactor:** only check properties when options has been provided _(by Philipp Burckhardt)_
2738
- [`4c956ca`](https://github.com/stdlib-js/stdlib/commit/4c956ca79f7be9a1cddcf8376760749913332718) - **docs:** fix JSDoc type _(by Philipp Burckhardt)_

CONTRIBUTORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Bruno Fenzl <[email protected]>
4242
Bryan Elee <[email protected]>
4343
Chinmay Joshi <[email protected]>
4444
Christopher Dambamuromo <[email protected]>
45+
DUDHAT HEMIL PRAVINKUMAR <[email protected]>
4546
4647
Daniel Hernandez Gomez <[email protected]>
4748
Daniel Killenberger <[email protected]>
@@ -65,6 +66,7 @@ Frank Kovacs <[email protected]>
6566
GK Bishnoi <[email protected]>
6667
GURU PRASAD SHARMA <[email protected]>
6768
69+
Gaurav Kaushik <[email protected]>
6870
Gautam Kaushik <[email protected]>
6971
Gautam sharma <[email protected]>
7072
@@ -166,6 +168,7 @@ Ruthwik Chikoti <[email protected]>
166168
Ryan Seal <[email protected]>
167169
Rylan Yang <[email protected]>
168170
SAHIL KUMAR <[email protected]>
171+
SAUJANYA MAGARDE <[email protected]>
169172
SHIVAM YADAV <[email protected]>
170173
Sachin Raj <[email protected]>
171174
Sahil Goyal <[email protected]>
@@ -188,6 +191,7 @@ Sivam Das <[email protected]>
188191
Snehil Shah <[email protected]>
189192
Soumajit Chatterjee <[email protected]>
190193
Spandan Barve <[email protected]>
194+
Srinivas Batthula <[email protected]>
191195
Stephannie Jiménez Gacha <[email protected]>
192196
Suhaib Ilahi <[email protected]>
193197
Suraj Kumar <[email protected]>

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/assign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ function assign( x, searchElement, fromIndex, out ) {
112112

113113
nargs = arguments.length;
114114
if ( !isndarrayLike( x ) ) {
115-
throw new TypeError( format( 'invalid argument. The first argument must be an ndarray. Value: `%s`.', x ) );
115+
throw new TypeError( format( 'invalid argument. First argument must be an ndarray. Value: `%s`.', x ) );
116116
}
117117
if ( nargs < 2 ) {
118118
throw new TypeError( format( 'invalid argument. Second argument must be either an ndarray or a scalar value. Value: `%s`.', searchElement ) );

0 commit comments

Comments
 (0)