Skip to content

Commit 7afa9cd

Browse files
chore: clean up and self review changes
--- 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: passed - 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 21e278e commit 7afa9cd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/blas/ext/base/wasm/dnanasum/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ interface Routine extends ModuleWrapper {
216216
* @example
217217
* var Float64Array = require( '@stdlib/array/float64' );
218218
*
219-
* var x = new Float64Array( [ 1.0, -2.0, NaN 2.0 ] );
219+
* var x = new Float64Array( [ 1.0, -2.0, NaN, 2.0 ] );
220220
*
221221
* var out = dnanasum.main( 4, x, 1 );
222222
* // returns 1.0

lib/node_modules/@stdlib/blas/ext/base/wasm/dnanasum/test/test.module.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ tape( 'a module instance has a `main` method which returns the sum of the first
211211
t.end();
212212
});
213213

214-
tape( 'if provided a `stride` parameter equal to `0` and the first element, a module instance has a `main` method which returns 0', function test( t ) {
214+
tape( 'if provided a `stride` parameter equal to `0` and the first element is `NaN`, a module instance has a `main` method which returns 0', function test( t ) {
215215
var mem;
216216
var mod;
217217
var xp;

lib/node_modules/@stdlib/blas/ext/base/wasm/dnanasum/test/test.module.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ tape( 'if provided a `stride` parameter equal to `0`, a module instance has an `
211211
t.end();
212212
});
213213

214-
tape( 'if provided a `stride` parameter equal to `0`, a module instance has an `ndarray` method which returns the first element is NaN, the function returns 0', function test( t ) {
214+
tape( 'if provided a `stride` parameter equal to `0` and the first element is `NaN`, a module instance has an `ndarray` method which returns 0', function test( t ) {
215215
var mem;
216216
var mod;
217217
var xp;

0 commit comments

Comments
 (0)