Skip to content
/ math Public

Commit 0e01cc8

Browse files
committed
Auto-generated commit
1 parent 3f5341c commit 0e01cc8

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
### Features
1212

13+
- [`b50060a`](https://github.com/stdlib-js/stdlib/commit/b50060a7145e4f34152573dae067322c16d40b6c) - update `math/base/special` TypeScript declarations [(#9117)](https://github.com/stdlib-js/stdlib/pull/9117)
1314
- [`0d81289`](https://github.com/stdlib-js/stdlib/commit/0d812895bf69ea0843359084f62063c7a84d0eb8) - update math scaffold databases [(#8798)](https://github.com/stdlib-js/stdlib/pull/8798)
1415
- [`611ea89`](https://github.com/stdlib-js/stdlib/commit/611ea89db523548ec89f57f184dbfd6581776d88) - update math scaffold databases [(#8774)](https://github.com/stdlib-js/stdlib/pull/8774)
1516
- [`42b871c`](https://github.com/stdlib-js/stdlib/commit/42b871c36e81b4b81737c9007b431e005adebaea) - update math scaffold databases [(#8764)](https://github.com/stdlib-js/stdlib/pull/8764)
@@ -708,6 +709,7 @@ A total of 74 issues were closed in this release:
708709

709710
<details>
710711

712+
- [`b50060a`](https://github.com/stdlib-js/stdlib/commit/b50060a7145e4f34152573dae067322c16d40b6c) - **feat:** update `math/base/special` TypeScript declarations [(#9117)](https://github.com/stdlib-js/stdlib/pull/9117) _(by stdlib-bot)_
711713
- [`95c53cf`](https://github.com/stdlib-js/stdlib/commit/95c53cf567009172f1105fda7228717e609e7ff5) - **docs:** improve doctests for complex number instances in `math/base/special/csignumf` [(#9042)](https://github.com/stdlib-js/stdlib/pull/9042) _(by Prajjwal Bajpai, Athan Reines)_
712714
- [`2067ee5`](https://github.com/stdlib-js/stdlib/commit/2067ee5afec9a02107768999993f6fb05dbbce56) - **chore:** fix JavaScript lint errors [(#8992)](https://github.com/stdlib-js/stdlib/pull/8992) _(by Rohit R Bhat)_
713715
- [`cd063e0`](https://github.com/stdlib-js/stdlib/commit/cd063e08de61b89959085f0f1650f40c34a55929) - **docs:** update examples [(#9036)](https://github.com/stdlib-js/stdlib/pull/9036) _(by stdlib-bot)_

base/special/docs/types/index.d.ts

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3835,17 +3835,9 @@ interface Namespace {
38353835
*
38363836
* @example
38373837
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
3838-
* var real = require( '@stdlib/complex/float32/real' );
3839-
* var imag = require( '@stdlib/complex/float32/imag' );
38403838
*
38413839
* var v = ns.csignumf( new Complex64( -4.2, 5.5 ) );
3842-
* // returns <Complex64>
3843-
*
3844-
* var re = real( v );
3845-
* // returns ~-0.607
3846-
*
3847-
* var im = imag( v );
3848-
* // returns ~0.795
3840+
* // returns <Complex64>[ ~-0.607, ~0.795 ]
38493841
*/
38503842
csignumf: typeof csignumf;
38513843

0 commit comments

Comments
 (0)