Skip to content

Commit 8145443

Browse files
authored
docs: update math/base/special TypeScript declarations
PR-URL: #10711 Reviewed-by: Philipp Burckhardt <pburckhardt@outlook.com> Signed-off-by: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com>
1 parent f46aad3 commit 8145443

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
@@ -3596,17 +3596,9 @@ interface Namespace {
35963596
*
35973597
* @example
35983598
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
3599-
* var real = require( '@stdlib/complex/float32/real' );
3600-
* var imag = require( '@stdlib/complex/float32/imag' );
36013599
*
36023600
* var v = ns.croundf( new Complex64( -4.2, 5.5 ) );
3603-
* // returns <Complex64>
3604-
*
3605-
* var re = real( v );
3606-
* // returns -4.0
3607-
*
3608-
* var im = imag( v );
3609-
* // returns 6.0
3601+
* // returns <Complex64>[ -4.0, 6.0 ]
36103602
*/
36113603
croundf: typeof croundf;
36123604

0 commit comments

Comments
 (0)