Skip to content

Commit 1208198

Browse files
committed
Auto-generated commit
1 parent 54729c0 commit 1208198

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

.gitignore

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,8 @@ jsconfig.json
188188
# Other editor files #
189189
######################
190190
.idea/
191-
192-
# Cursor #
193-
##########
194191
.cursorignore
192+
193+
# AI coding agents #
194+
####################
195+
claude.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-08-18)
7+
## Unreleased (2025-09-07)
88

99
<section class="features">
1010

@@ -32,6 +32,7 @@
3232

3333
<details>
3434

35+
- [`fea0e25`](https://github.com/stdlib-js/stdlib/commit/fea0e25bcdfef27741b914208a535240ef44e5a5) - **docs:** update example and remove excess whitespace _(by Athan Reines)_
3536
- [`d293a23`](https://github.com/stdlib-js/stdlib/commit/d293a2321d3c9dc0c4e016cb890032d0b32d28fc) - **docs:** add missing periods _(by Philipp Burckhardt)_
3637
- [`2a0ea7f`](https://github.com/stdlib-js/stdlib/commit/2a0ea7feb22806685fef9eac8a32d7012dab7adc) - **fix:** use correct package names in package.json _(by Philipp Burckhardt)_
3738
- [`46ff8ea`](https://github.com/stdlib-js/stdlib/commit/46ff8ea7761ae438c4718681c5890f146fb0985e) - **docs:** minor clean-up _(by Philipp Burckhardt)_

CONTRIBUTORS

Lines changed: 3 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
@@ -189,6 +191,7 @@ Sivam Das <[email protected]>
189191
Snehil Shah <[email protected]>
190192
Soumajit Chatterjee <[email protected]>
191193
Spandan Barve <[email protected]>
194+
Srinivas Batthula <[email protected]>
192195
Stephannie Jiménez Gacha <[email protected]>
193196
Suhaib Ilahi <[email protected]>
194197
Suraj Kumar <[email protected]>

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,6 @@ Performs a multiply-add operation involving three double-precision complex float
7575

7676
```javascript
7777
var Complex128 = require( '@stdlib/complex-float64-ctor' );
78-
var real = require( '@stdlib/complex-float64-real' );
79-
var imag = require( '@stdlib/complex-float64-imag' );
8078

8179
var z1 = new Complex128( 5.0, 3.0 );
8280
var z2 = new Complex128( -2.0, 1.0 );

docs/types/test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,4 +465,3 @@ import muladd = require( './index' );
465465
muladd.strided( z1, 1, 0, z2, 1, 0, z3, 1, 0, out, 1 ); // $ExpectError
466466
muladd.strided( z1, 1, 0, z2, 1, 0, z3, 1, 0, out, 1, 0, {} ); // $ExpectError
467467
}
468-

0 commit comments

Comments
 (0)