Skip to content

Commit 846ac66

Browse files
committed
chore: clean-up
--- 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 0baf6ee commit 846ac66

File tree

1 file changed

+6
-6
lines changed
  • lib/node_modules/@stdlib/blas/base/zdotc/docs

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@
4747
<Complex128>[ 54.0, -80.0 ]
4848

4949
// Using typed array views:
50-
> var x0 = new {{alias:@stdlib/array/complex64}}( [ 0.0, 7.0, -8.0, -4.0, -7.0, -1.0, -9.0 ] );
51-
> var y0 = new {{alias:@stdlib/array/complex64}}( [ 0.0, 0.0, 6.0, -6.0, -9.0, 5.0, 7.0, -6.0 ] );
52-
> var x1 = new {{alias:@stdlib/array/complex64}}( x0.buffer, x0.BYTES_PER_ELEMENT*1 );
53-
> var y1 = new {{alias:@stdlib/array/complex64}}( y0.buffer, y0.BYTES_PER_ELEMENT*2 );
54-
> z = {{alias}}( 2, x1, -2, y1, 1 )
55-
<Complex128>[ 54.0, -80.0 ]
50+
> var x0 = new {{alias:@stdlib/array/complex128}}( [ 7.0, -8.0, -4.0, -7.0 ] );
51+
> var y0 = new {{alias:@stdlib/array/complex128}}( [ 6.0, -6.0, -9.0, 5.0 ] );
52+
> var x1 = new {{alias:@stdlib/array/complex128}}( x0.buffer, x0.BYTES_PER_ELEMENT*1 );
53+
> var y1 = new {{alias:@stdlib/array/complex128}}( y0.buffer, y0.BYTES_PER_ELEMENT*1 );
54+
> z = {{alias}}( 1, x1, -1, y1, 1 )
55+
<Complex128>[ 1.0, -83.0 ]
5656

5757

5858
{{alias}}.ndarray( N, x, strideX, offsetX, y, strideY, offsetY )

0 commit comments

Comments
 (0)