Skip to content

Commit 6ea7c0a

Browse files
authored
docs: update examples
PR-URL: #9290 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 22e2828 commit 6ea7c0a

File tree

1 file changed

+1
-9
lines changed
  • lib/node_modules/@stdlib/math/base/special/docs/types

1 file changed

+1
-9
lines changed

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
@@ -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)