Skip to content

Commit a253e63

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

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
@@ -2573,17 +2573,9 @@ interface Namespace {
25732573
*
25742574
* @example
25752575
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
2576-
* var real = require( '@stdlib/complex/float32/real' );
2577-
* var imag = require( '@stdlib/complex/float32/imag' );
25782576
*
25792577
* var v = ns.cceilf( new Complex64( -1.5, 2.5 ) );
2580-
* // returns <Complex64>
2581-
*
2582-
* var re = real( v );
2583-
* // returns -1.0
2584-
*
2585-
* var im = imag( v );
2586-
* // returns 3.0
2578+
* // returns <Complex64>[ -1.0, 3.0 ]
25872579
*/
25882580
cceilf: typeof cceilf;
25892581

0 commit comments

Comments
 (0)