File tree Expand file tree Collapse file tree 2 files changed +5
-28
lines changed
Expand file tree Collapse file tree 2 files changed +5
-28
lines changed Original file line number Diff line number Diff line change 44
55<section class="release" id="unreleased">
66
7- ## Unreleased (2026-01-16 )
7+ ## Unreleased (2026-01-17 )
88
99<section class="features">
1010
@@ -717,6 +717,7 @@ A total of 82 issues were closed in this release:
717717
718718<details>
719719
720+ - [`a76d474`](https://github.com/stdlib-js/stdlib/commit/a76d474ab4fa9b2d936d21f9b9aca714b1349ff4) - **docs:** update `math/base/special` TypeScript declaration example code [(#9794)](https://github.com/stdlib-js/stdlib/pull/9794) _(by stdlib-bot)_
720721- [`0472076`](https://github.com/stdlib-js/stdlib/commit/04720767c484e6277ad9411dff3dc5a116c31378) - **docs:** remove duplicated words in documentation and comments _(by Philipp Burckhardt)_
721722- [`4418e62`](https://github.com/stdlib-js/stdlib/commit/4418e626e0a3ec318b6451f4e3b3397b0d43c6f2) - **test:** fix broken tests _(by Athan Reines)_
722723- [`4ae9a8a`](https://github.com/stdlib-js/stdlib/commit/4ae9a8a3077bbd8ace12af0e8be28dc750d122e0) - **chore:** clean-up _(by Athan Reines)_
Original file line number Diff line number Diff line change @@ -2831,31 +2831,15 @@ interface Namespace {
28312831 *
28322832 * @example
28332833 * var Complex128 = require( '@stdlib/complex/float64/ctor' );
2834- * var real = require( '@stdlib/complex/float64/real' );
2835- * var imag = require( '@stdlib/complex/float64/imag' );
28362834 *
28372835 * var v = ns.cexp( new Complex128( 0.0, 0.0 ) );
2838- * // returns <Complex128>
2839- *
2840- * var re = real( v );
2841- * // returns 1.0
2842- *
2843- * var im = imag( v );
2844- * // returns 0.0
2836+ * // returns <Complex128>[ 1.0, 0.0 ]
28452837 *
28462838 * @example
28472839 * var Complex128 = require( '@stdlib/complex/float64/ctor' );
2848- * var real = require( '@stdlib/complex/float64/real' );
2849- * var imag = require( '@stdlib/complex/float64/imag' );
28502840 *
28512841 * var v = ns.cexp( new Complex128( 1.0, 0.0 ) );
2852- * // returns <Complex128>
2853- *
2854- * var re = real( v );
2855- * // returns ~2.718
2856- *
2857- * var im = imag( v );
2858- * // returns 0.0
2842+ * // returns <Complex128>[ ~2.718, 0.0 ]
28592843 */
28602844 cexp : typeof cexp ;
28612845
@@ -2905,17 +2889,9 @@ interface Namespace {
29052889 *
29062890 * @example
29072891 * var Complex128 = require( '@stdlib/complex/float64/ctor' );
2908- * var real = require( '@stdlib/complex/float64/real' );
2909- * var imag = require( '@stdlib/complex/float64/imag' );
29102892 *
29112893 * var v = ns.cfloor( new Complex128( 5.5, 3.3 ) );
2912- * // returns <Complex128>
2913- *
2914- * var re = real( v );
2915- * // returns 5.0
2916- *
2917- * var im = imag( v );
2918- * // returns 3.0
2894+ * // returns <Complex128>[ 5.0, 3.0 ]
29192895 */
29202896 cfloor : typeof cfloor ;
29212897
You can’t perform that action at this time.
0 commit comments