Skip to content

Commit 7b42c38

Browse files
authored
docs: update example
PR-URL: #11897 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 632bef3 commit 7b42c38

1 file changed

Lines changed: 1 addition & 9 deletions

File tree

  • lib/node_modules/@stdlib/math/base/special/docs/types

lib/node_modules/@stdlib/math/base/special/docs/types/index.d.ts

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)