Skip to content

Commit 1770970

Browse files
committed
docs: fix types
--- 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: na - 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 --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent e40aa38 commit 1770970

File tree

1 file changed

+5
-5
lines changed
  • lib/node_modules/@stdlib/math/base/napi/lib

1 file changed

+5
-5
lines changed

lib/node_modules/@stdlib/math/base/napi/lib/index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var ns = {};
4040
* @name binary
4141
* @memberof ns
4242
* @readonly
43-
* @type {Function}
43+
* @type {string}
4444
* @see {@link module:@stdlib/math/base/napi/binary}
4545
*/
4646
setReadOnly( ns, 'binary', require( '@stdlib/math/base/napi/binary' ) );
@@ -49,7 +49,7 @@ setReadOnly( ns, 'binary', require( '@stdlib/math/base/napi/binary' ) );
4949
* @name quaternary
5050
* @memberof ns
5151
* @readonly
52-
* @type {Function}
52+
* @type {string}
5353
* @see {@link module:@stdlib/math/base/napi/quaternary}
5454
*/
5555
setReadOnly( ns, 'quaternary', require( '@stdlib/math/base/napi/quaternary' ) );
@@ -58,7 +58,7 @@ setReadOnly( ns, 'quaternary', require( '@stdlib/math/base/napi/quaternary' ) );
5858
* @name quinary
5959
* @memberof ns
6060
* @readonly
61-
* @type {Function}
61+
* @type {string}
6262
* @see {@link module:@stdlib/math/base/napi/quinary}
6363
*/
6464
setReadOnly( ns, 'quinary', require( '@stdlib/math/base/napi/quinary' ) );
@@ -67,7 +67,7 @@ setReadOnly( ns, 'quinary', require( '@stdlib/math/base/napi/quinary' ) );
6767
* @name ternary
6868
* @memberof ns
6969
* @readonly
70-
* @type {Function}
70+
* @type {string}
7171
* @see {@link module:@stdlib/math/base/napi/ternary}
7272
*/
7373
setReadOnly( ns, 'ternary', require( '@stdlib/math/base/napi/ternary' ) );
@@ -76,7 +76,7 @@ setReadOnly( ns, 'ternary', require( '@stdlib/math/base/napi/ternary' ) );
7676
* @name unary
7777
* @memberof ns
7878
* @readonly
79-
* @type {Function}
79+
* @type {string}
8080
* @see {@link module:@stdlib/math/base/napi/unary}
8181
*/
8282
setReadOnly( ns, 'unary', require( '@stdlib/math/base/napi/unary' ) );

0 commit comments

Comments
 (0)