Skip to content

Commit 610eff4

Browse files
committed
docs: update examples
--- 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: na - 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent dc62ca4 commit 610eff4

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/lapack/base/dlacpy/docs/types

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/lapack/base/dlacpy/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ interface Routine {
7070
* var Float64Array = require( '@stdlib/array/float64' );
7171
*
7272
* var A = new Float64Array( [ 0.0, 1.0, 2.0, 3.0, 4.0 ] );
73-
* var B = new Float64Array( [ 0.0, 0.0, 11.0, 312.0, 53.0, 412.0 ] );
73+
* var B = new Float64Array( [ 0.0, 0.0, 99.0, 99.0, 99.0, 99.0 ] );
7474
*
7575
* dlacpy.ndarray( 'all', 2, 2, A, 2, 1, 1, B, 2, 1, 2 );
7676
* // B => <Float64Array>[ 0.0, 0.0, 1.0, 2.0, 3.0, 4.0 ]
@@ -104,7 +104,7 @@ interface Routine {
104104
* var Float64Array = require( '@stdlib/array/float64' );
105105
*
106106
* var A = new Float64Array( [ 0.0, 1.0, 2.0, 3.0, 4.0 ] );
107-
* var B = new Float64Array( [ 0.0, 0.0, 11.0, 312.0, 53.0, 412.0 ] );
107+
* var B = new Float64Array( [ 0.0, 0.0, 99.0, 99.0, 99.0, 99.0 ] );
108108
*
109109
* dlacpy.ndarray( 'all', 2, 2, A, 2, 1, 1, B, 2, 1, 2 );
110110
* // B => <Float64Array>[ 0.0, 0.0, 1.0, 2.0, 3.0, 4.0 ]

0 commit comments

Comments
 (0)