Skip to content

Commit da582d0

Browse files
Shabareesh ShettyShabareesh Shetty
authored andcommitted
fix: repl.txt lint error
--- 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: passed - 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 123d084 commit da582d0

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/blas/base/ggemv/docs

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/base/ggemv/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@
8080
> A = new {{alias:@stdlib/array/float64}}( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
8181
> var x1 = new {{alias:@stdlib/array/float64}}( x0.buffer, x0.BYTES_PER_ELEMENT*1 );
8282
> var y1 = new {{alias:@stdlib/array/float64}}( y0.buffer, y0.BYTES_PER_ELEMENT*1 );
83-
> {{alias}}( order, trans, 2, 2, 1.0, A, 2, x1, -1, 1.0, y1, -1 )
83+
> {{alias}}( order, trans, 2, 2, 1.0, A, 2, x1, -1, 1.0, y1, -1 );
8484
> y0
85-
[ 0.0, 8.0, 4.0 ]
85+
<Float64Array>[ 0.0, 8.0, 4.0 ]
8686

8787

8888
{{alias}}.ndarray( trans, M, N, α, A, sa1, sa2, oa, x, sx, ox, β, y, sy, oy )

0 commit comments

Comments
 (0)