File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -731,6 +731,7 @@ A total of 97 issues were closed in this release:
731731
732732<details>
733733
734+ - [`7b42c38`](https://github.com/stdlib-js/stdlib/commit/7b42c38ece3da063237e51eb98b8e402aaeb91c1) - **docs:** update example [(#11897)](https://github.com/stdlib-js/stdlib/pull/11897) _(by stdlib-bot)_
734735- [`c2b92b4`](https://github.com/stdlib-js/stdlib/commit/c2b92b4e7c4840bb859808dc0dacd97833019549) - **chore:** propagate fixes to sibling packages [(#11892)](https://github.com/stdlib-js/stdlib/pull/11892) _(by Philipp Burckhardt)_
735736- [`87038a4`](https://github.com/stdlib-js/stdlib/commit/87038a414428ad7c24c2682c43de840793854280) - **chore:** fix EditorConfig lint errors [(#11889)](https://github.com/stdlib-js/stdlib/pull/11889) _(by alok chando)_
736737- [`4cd8e43`](https://github.com/stdlib-js/stdlib/commit/4cd8e438cc1b4e41e546704905ef9576d65bf0fc) - **test:** migrate `math/base/special/cbrt` to ULP-based testing [(#11839)](https://github.com/stdlib-js/stdlib/pull/11839) _(by Mandeep2333)_
Original file line number Diff line number Diff line change @@ -2588,17 +2588,9 @@ interface Namespace {
25882588 *
25892589 * @example
25902590 * var Complex128 = require( '@stdlib/complex/float64/ctor' );
2591- * var real = require( '@stdlib/complex/float64/real' );
2592- * var imag = require( '@stdlib/complex/float64/imag' );
25932591 *
25942592 * var v = ns.cceiln( new Complex128( 5.555, -3.333 ), -2 );
2595- * // returns <Complex128>
2596- *
2597- * var re = real( v );
2598- * // returns 5.56
2599- *
2600- * var im = imag( v );
2601- * // returns -3.33
2593+ * // returns <Complex128>[ 5.56, -3.33 ]
26022594 */
26032595 cceiln : typeof cceiln ;
26042596
You can’t perform that action at this time.
0 commit comments