Skip to content

Commit b093975

Browse files
committed
docs: fix types and remove empty line
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: passed - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent fc42d47 commit b093975

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

lib/node_modules/@stdlib/math/base/special/kernel-sincos/examples/c/example.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
* limitations under the License.
1717
*/
1818

19-
2019
#include "stdlib/math/base/special/kernel_sincos.h"
2120
#include <stdio.h>
2221

lib/node_modules/@stdlib/math/base/special/kernel-sincos/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ var S1 = -1.66666666666666324348e-01; // 0xBFC55555, 0x55555549
5252
*
5353
* @param {number} x - input value (in radians, assumed to be bounded by `~π/4` in magnitude)
5454
* @param {number} y - tail of `x`
55-
* @param {Array<number>} out - output array
55+
* @param {Collection} out - output array
5656
* @param {integer} stride - output array stride
5757
* @param {NonNegativeInteger} offset - output array index offset
58-
* @returns {Array<number>} sine and cosine
58+
* @returns {Collection} sine and cosine
5959
*
6060
* @example
6161
* var v = kernelSincos( 0.0, 0.0, [ 0.0, 0.0 ], 1, 0 );

lib/node_modules/@stdlib/math/base/special/kernel-sincos/lib/native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var addon = require( './../src/addon.node' );
3232
* @private
3333
* @param {number} x - input value (in radians, assumed to be bounded by `~π/4` in magnitude)
3434
* @param {number} y - tail of `x`
35-
* @returns {Array<number>} sine and cosine
35+
* @returns {Float64Array} sine and cosine
3636
*
3737
* @example
3838
* var v = kernelSincos( 0.0, 0.0 );

0 commit comments

Comments
 (0)