Skip to content

Commit e6b33e0

Browse files
committed
refactor: remove include and fix return type
PR-URL: stdlib-js#2699 Ref: stdlib-js@f5d15f7#r144735243 Ref: stdlib-js@f5d15f7#r144735169 Reviewed-by: Athan Reines <[email protected]>
1 parent a23f885 commit e6b33e0

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

lib/node_modules/@stdlib/math/base/special/sincospi/lib/native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var addon = require( './../src/addon.node' );
3131
*
3232
* @private
3333
* @param {number} x - input value
34-
* @returns {Array<number>} two-element array containing sin(πx) and cos(πx)
34+
* @returns {Float64Array} two-element array containing sin(πx) and cos(πx)
3535
*
3636
* @example
3737
* var v = sincospi( 0.0 );

lib/node_modules/@stdlib/math/base/special/sincospi/src/main.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
#include "stdlib/math/base/assert/is_infinite.h"
2626
#include "stdlib/math/base/assert/is_nan.h"
2727
#include "stdlib/constants/float64/pi.h"
28-
#include <stdint.h>
2928

3029
/**
3130
* Simultaneously computes the sine and cosine of a number times π.

0 commit comments

Comments
 (0)