Skip to content

Commit fea0e25

Browse files
committed
docs: update example and remove excess whitespace
--- 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: passed - 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: na - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed ---
1 parent 7c8ed3b commit fea0e25

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

lib/node_modules/@stdlib/complex/float64/base/mul-add/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@ Performs a multiply-add operation involving three double-precision complex float
4242

4343
```javascript
4444
var Complex128 = require( '@stdlib/complex/float64/ctor' );
45-
var real = require( '@stdlib/complex/float64/real' );
46-
var imag = require( '@stdlib/complex/float64/imag' );
4745

4846
var z1 = new Complex128( 5.0, 3.0 );
4947
var z2 = new Complex128( -2.0, 1.0 );

lib/node_modules/@stdlib/complex/float64/base/mul-add/docs/types/test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,4 +465,3 @@ import muladd = require( './index' );
465465
muladd.strided( z1, 1, 0, z2, 1, 0, z3, 1, 0, out, 1 ); // $ExpectError
466466
muladd.strided( z1, 1, 0, z2, 1, 0, z3, 1, 0, out, 1, 0, {} ); // $ExpectError
467467
}
468-

0 commit comments

Comments
 (0)