Skip to content

Commit 8577112

Browse files
committed
Auto-generated commit
1 parent c355901 commit 8577112

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 (2026-02-15)
7+
## Unreleased (2026-02-16)
88

99
<section class="features">
1010

@@ -721,6 +721,7 @@ A total of 84 issues were closed in this release:
721721

722722
<details>
723723

724+
- [`a253e63`](https://github.com/stdlib-js/stdlib/commit/a253e6394fc69bc1251c0544ca051b605c8adad3) - **docs:** update `math/base/special` TypeScript declarations [(#10311)](https://github.com/stdlib-js/stdlib/pull/10311) _(by stdlib-bot)_
724725
- [`e83179b`](https://github.com/stdlib-js/stdlib/commit/e83179b9b342021ac4b62eb9985e82137462ff0e) - **docs:** improve doctests for complex number instances in `math/base/special/cceilf` [(#10183)](https://github.com/stdlib-js/stdlib/pull/10183) _(by Vishal Gaikwad)_
725726
- [`53aaf81`](https://github.com/stdlib-js/stdlib/commit/53aaf8135f7feba8476da758d895cc24da20caad) - **feat:** add C implementation for `math/base/special/heaviside` [(#10196)](https://github.com/stdlib-js/stdlib/pull/10196) _(by Kamal Singh Rautela)_
726727
- [`71f75c9`](https://github.com/stdlib-js/stdlib/commit/71f75c9b9b996b6b0e6a1e4a75229a726c3a1ea3) - **chore:** fix JavaScript lint errors [(#10247)](https://github.com/stdlib-js/stdlib/pull/10247) _(by Bhargav Dabhade)_

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

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2573,17 +2573,9 @@ interface Namespace {
25732573
*
25742574
* @example
25752575
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
2576-
* var real = require( '@stdlib/complex/float32/real' );
2577-
* var imag = require( '@stdlib/complex/float32/imag' );
25782576
*
25792577
* var v = ns.cceilf( new Complex64( -1.5, 2.5 ) );
2580-
* // returns <Complex64>
2581-
*
2582-
* var re = real( v );
2583-
* // returns -1.0
2584-
*
2585-
* var im = imag( v );
2586-
* // returns 3.0
2578+
* // returns <Complex64>[ -1.0, 3.0 ]
25872579
*/
25882580
cceilf: typeof cceilf;
25892581

0 commit comments

Comments
 (0)