Skip to content
/ math Public

Commit 1ccfeb0

Browse files
committed
Auto-generated commit
1 parent a2ac992 commit 1ccfeb0

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
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 (2026-03-04)
7+
## Unreleased (2026-03-05)
88

99
<section class="features">
1010

@@ -723,6 +723,7 @@ A total of 87 issues were closed in this release:
723723

724724
<details>
725725

726+
- [`8145443`](https://github.com/stdlib-js/stdlib/commit/8145443dd757751d025b175d64e425244cddb97f) - **docs:** update `math/base/special` TypeScript declarations [(#10711)](https://github.com/stdlib-js/stdlib/pull/10711) _(by stdlib-bot)_
726727
- [`a24740a`](https://github.com/stdlib-js/stdlib/commit/a24740a8441afceaef4ec4f0956fdb32b66c2f36) - **chore:** fix EditorConfig lint errors [(#10695)](https://github.com/stdlib-js/stdlib/pull/10695) _(by Partha Das)_
727728
- [`2727b51`](https://github.com/stdlib-js/stdlib/commit/2727b5129ea9956b5e0caf989654454912fe9d24) - **docs:** improve doctests for complex number instances in `math/base/special/croundf` [(#10510)](https://github.com/stdlib-js/stdlib/pull/10510) _(by AyushiJain18270, Philipp Burckhardt)_
728729
- [`95e3a15`](https://github.com/stdlib-js/stdlib/commit/95e3a153b0483dbee7c0d55cb80eee826f0933fb) - **chore:** minor clean-up _(by Philipp Burckhardt)_

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

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3596,17 +3596,9 @@ interface Namespace {
35963596
*
35973597
* @example
35983598
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
3599-
* var real = require( '@stdlib/complex/float32/real' );
3600-
* var imag = require( '@stdlib/complex/float32/imag' );
36013599
*
36023600
* var v = ns.croundf( new Complex64( -4.2, 5.5 ) );
3603-
* // returns <Complex64>
3604-
*
3605-
* var re = real( v );
3606-
* // returns -4.0
3607-
*
3608-
* var im = imag( v );
3609-
* // returns 6.0
3601+
* // returns <Complex64>[ -4.0, 6.0 ]
36103602
*/
36113603
croundf: typeof croundf;
36123604

0 commit comments

Comments
 (0)