Skip to content

Commit

Permalink
docs: remove stdint, return Float64Array
Browse files Browse the repository at this point in the history
  • Loading branch information
gunjjoshi committed Jul 29, 2024
1 parent dc626ba commit 17a7169
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ var addon = require( './../src/addon.node' );
*
* @private
* @param {number} x - input value
* @returns {Array<number>} two-element array containing sin(πx) and cos(πx)
* @returns {Float64Array} two-element array containing sin(πx) and cos(πx)
*
* @example
* var v = sincospi( 0.0 );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
#include "stdlib/math/base/assert/is_infinite.h"
#include "stdlib/math/base/assert/is_nan.h"
#include "stdlib/constants/float64/pi.h"
#include <stdint.h>

/**
* Simultaneously computes the sine and cosine of a number times π.
Expand Down

0 comments on commit 17a7169

Please sign in to comment.