Skip to content

Commit 20ae685

Browse files
committed
docs: correctly call .ndarray in second example
--- 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 ---
1 parent 8cea287 commit 20ae685

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/ext/base/dsort2sh/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
* var x = new Float64Array( [ 1.0, -2.0, 3.0, -4.0 ] );
4646
* var y = new Float64Array( [ 0.0, 1.0, 2.0, 3.0 ] );
4747
*
48-
* dsort2sh( x.length, 1.0, x, 1, 0, y, 1, 0 );
48+
* dsort2sh.ndarray( x.length, 1.0, x, 1, 0, y, 1, 0 );
4949
*
5050
* console.log( x );
5151
* // => <Float64Array>[ -4.0, -2.0, 1.0, 3.0 ]

lib/node_modules/@stdlib/blas/ext/base/gsort2sh/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* var x = [ 1.0, -2.0, 3.0, -4.0 ];
4444
* var y = [ 0.0, 1.0, 2.0, 3.0 ];
4545
*
46-
* gsort2sh( x.length, 1.0, x, 1, 0, y, 1, 0 );
46+
* gsort2sh.ndarray( x.length, 1.0, x, 1, 0, y, 1, 0 );
4747
*
4848
* console.log( x );
4949
* // => [ -4.0, -2.0, 1.0, 3.0 ]

0 commit comments

Comments
 (0)