Skip to content

Commit eb4ee39

Browse files
chore: update comments
PR-URL: #7203 Co-authored-by: Athan Reines <kgryte@gmail.com> Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 9323351 commit eb4ee39

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

lib/node_modules/@stdlib/stats/strided/wasm/dmeanors/benchmark/benchmark.module.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function createBenchmark( len ) {
6767
var v;
6868
var i;
6969

70-
// Create a new BLAS routine interface:
70+
// Create a new routine interface:
7171
mem = new Memory({
7272
'initial': 0
7373
});

lib/node_modules/@stdlib/stats/strided/wasm/dmeanors/benchmark/benchmark.module.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function createBenchmark( len ) {
6767
var v;
6868
var i;
6969

70-
// Create a new BLAS routine interface:
70+
// Create a new routine interface:
7171
mem = new Memory({
7272
'initial': 0
7373
});

lib/node_modules/@stdlib/stats/strided/wasm/dmeanors/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-
* BLAS 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/dmeanors/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 BLAS 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();

lib/node_modules/@stdlib/stats/strided/wasm/dmeanwd/benchmark/benchmark.module.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function createBenchmark( len ) {
6767
var v;
6868
var i;
6969

70-
// Create a new BLAS routine interface:
70+
// Create a new routine interface:
7171
mem = new Memory({
7272
'initial': 0
7373
});

lib/node_modules/@stdlib/stats/strided/wasm/dmeanwd/benchmark/benchmark.module.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function createBenchmark( len ) {
6767
var v;
6868
var i;
6969

70-
// Create a new BLAS routine interface:
70+
// Create a new routine interface:
7171
mem = new Memory({
7272
'initial': 0
7373
});

lib/node_modules/@stdlib/stats/strided/wasm/dmeanwd/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-
* BLAS 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/dmeanwd/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 BLAS 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)