Skip to content

Commit 45320b8

Browse files
chore: clean up in comments
--- 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: passed - 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 60ddfd9 commit 45320b8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/strided/wasm/dmeanpw/lib/module.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var wasmBinary = require( './binary.js' );
3333
// MAIN //
3434

3535
/**
36-
* New routine WebAssembly module wrapper constructor.
36+
* WebAssembly module wrapper constructor.
3737
*
3838
* @constructor
3939
* @param {Object} memory - WebAssembly memory instance

lib/node_modules/@stdlib/stats/strided/wasm/dmeanpw/test/test.routine.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ tape( 'the module instance returned by the constructor inherits from a module wr
5252
t.end();
5353
});
5454

55-
tape( 'the module instance returned by the constructor inherits from a new routine module', function test( t ) {
55+
tape( 'the module instance returned by the constructor inherits from a routine module', function test( t ) {
5656
var mod = new Routine();
5757
t.strictEqual( mod instanceof Module, true, 'returns expected value' );
5858
t.end();

0 commit comments

Comments
 (0)