Skip to content

Commit 60aa622

Browse files
committed
Auto-generated commit
1 parent fdace19 commit 60aa622

2 files changed

Lines changed: 3 additions & 10 deletions

File tree

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-12-20)
7+
## Unreleased (2025-12-21)
88

99
<section class="features">
1010

@@ -708,6 +708,7 @@ A total of 74 issues were closed in this release:
708708

709709
<details>
710710

711+
- [`6ea7c0a`](https://github.com/stdlib-js/stdlib/commit/6ea7c0aa08dcf16ba56f217bf5ff24984129fe1d) - **docs:** update examples [(#9290)](https://github.com/stdlib-js/stdlib/pull/9290) _(by stdlib-bot)_
711712
- [`9d2d2d0`](https://github.com/stdlib-js/stdlib/commit/9d2d2d041ee3e3c00566bd64f607f8ff311ed501) - **docs:** improve doctests for complex number instances in `math/base/special/cfloorn` [(#9284)](https://github.com/stdlib-js/stdlib/pull/9284) _(by Aryan kumar)_
712713
- [`2e80e3a`](https://github.com/stdlib-js/stdlib/commit/2e80e3a075fbafef274e94d203b693ec03e65fec) - **test:** use powf in negafibonaccif [(#9192)](https://github.com/stdlib-js/stdlib/pull/9192) _(by Sagar Ratna Chaudhary)_
713714
- [`25dd8e1`](https://github.com/stdlib-js/stdlib/commit/25dd8e1fedfc74790135de764cebd854ca6a2fa2) - **bench:** use powf in lucasf [(#9193)](https://github.com/stdlib-js/stdlib/pull/9193) _(by Sagar Ratna Chaudhary)_

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

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2942,17 +2942,9 @@ interface Namespace {
29422942
*
29432943
* @example
29442944
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
2945-
* var real = require( '@stdlib/complex/float64/real' );
2946-
* var imag = require( '@stdlib/complex/float64/imag' );
29472945
*
29482946
* var v = ns.cfloorn( new Complex128( 5.555, -3.333 ), -2 );
2949-
* // returns <Complex128>
2950-
*
2951-
* var re = real( v );
2952-
* // returns 5.55
2953-
*
2954-
* var im = imag( v );
2955-
* // returns -3.34
2947+
* // returns <Complex128>[ 5.55, -3.34 ]
29562948
*/
29572949
cfloorn: typeof cfloorn;
29582950

0 commit comments

Comments
 (0)