diff --git a/lib/node_modules/@stdlib/stats/strided/wasm/dmeanors/benchmark/benchmark.module.main.js b/lib/node_modules/@stdlib/stats/strided/wasm/dmeanors/benchmark/benchmark.module.main.js index 8156c2e9c563..dcfc855f891c 100644 --- a/lib/node_modules/@stdlib/stats/strided/wasm/dmeanors/benchmark/benchmark.module.main.js +++ b/lib/node_modules/@stdlib/stats/strided/wasm/dmeanors/benchmark/benchmark.module.main.js @@ -67,7 +67,7 @@ function createBenchmark( len ) { var v; var i; - // Create a new BLAS routine interface: + // Create a new routine interface: mem = new Memory({ 'initial': 0 }); diff --git a/lib/node_modules/@stdlib/stats/strided/wasm/dmeanors/benchmark/benchmark.module.ndarray.js b/lib/node_modules/@stdlib/stats/strided/wasm/dmeanors/benchmark/benchmark.module.ndarray.js index 14f2c95862bc..b89b7ba410c9 100644 --- a/lib/node_modules/@stdlib/stats/strided/wasm/dmeanors/benchmark/benchmark.module.ndarray.js +++ b/lib/node_modules/@stdlib/stats/strided/wasm/dmeanors/benchmark/benchmark.module.ndarray.js @@ -67,7 +67,7 @@ function createBenchmark( len ) { var v; var i; - // Create a new BLAS routine interface: + // Create a new routine interface: mem = new Memory({ 'initial': 0 }); diff --git a/lib/node_modules/@stdlib/stats/strided/wasm/dmeanors/lib/module.js b/lib/node_modules/@stdlib/stats/strided/wasm/dmeanors/lib/module.js index b4c1cf0df9a4..768e23329ef5 100644 --- a/lib/node_modules/@stdlib/stats/strided/wasm/dmeanors/lib/module.js +++ b/lib/node_modules/@stdlib/stats/strided/wasm/dmeanors/lib/module.js @@ -33,7 +33,7 @@ var wasmBinary = require( './binary.js' ); // MAIN // /** -* BLAS routine WebAssembly module wrapper constructor. +* WebAssembly module wrapper constructor. * * @constructor * @param {Object} memory - WebAssembly memory instance diff --git a/lib/node_modules/@stdlib/stats/strided/wasm/dmeanors/test/test.routine.js b/lib/node_modules/@stdlib/stats/strided/wasm/dmeanors/test/test.routine.js index d90a5804a8e1..806b3de987e3 100644 --- a/lib/node_modules/@stdlib/stats/strided/wasm/dmeanors/test/test.routine.js +++ b/lib/node_modules/@stdlib/stats/strided/wasm/dmeanors/test/test.routine.js @@ -52,7 +52,7 @@ tape( 'the module instance returned by the constructor inherits from a module wr t.end(); }); -tape( 'the module instance returned by the constructor inherits from a BLAS routine module', function test( t ) { +tape( 'the module instance returned by the constructor inherits from a routine module', function test( t ) { var mod = new Routine(); t.strictEqual( mod instanceof Module, true, 'returns expected value' ); t.end(); diff --git a/lib/node_modules/@stdlib/stats/strided/wasm/dmeanwd/benchmark/benchmark.module.main.js b/lib/node_modules/@stdlib/stats/strided/wasm/dmeanwd/benchmark/benchmark.module.main.js index 69923f48eb35..608c71a19aed 100644 --- a/lib/node_modules/@stdlib/stats/strided/wasm/dmeanwd/benchmark/benchmark.module.main.js +++ b/lib/node_modules/@stdlib/stats/strided/wasm/dmeanwd/benchmark/benchmark.module.main.js @@ -67,7 +67,7 @@ function createBenchmark( len ) { var v; var i; - // Create a new BLAS routine interface: + // Create a new routine interface: mem = new Memory({ 'initial': 0 }); diff --git a/lib/node_modules/@stdlib/stats/strided/wasm/dmeanwd/benchmark/benchmark.module.ndarray.js b/lib/node_modules/@stdlib/stats/strided/wasm/dmeanwd/benchmark/benchmark.module.ndarray.js index 8df9ece766a4..646d727944bb 100644 --- a/lib/node_modules/@stdlib/stats/strided/wasm/dmeanwd/benchmark/benchmark.module.ndarray.js +++ b/lib/node_modules/@stdlib/stats/strided/wasm/dmeanwd/benchmark/benchmark.module.ndarray.js @@ -67,7 +67,7 @@ function createBenchmark( len ) { var v; var i; - // Create a new BLAS routine interface: + // Create a new routine interface: mem = new Memory({ 'initial': 0 }); diff --git a/lib/node_modules/@stdlib/stats/strided/wasm/dmeanwd/lib/module.js b/lib/node_modules/@stdlib/stats/strided/wasm/dmeanwd/lib/module.js index 8291363b61ea..08e2e871bf04 100644 --- a/lib/node_modules/@stdlib/stats/strided/wasm/dmeanwd/lib/module.js +++ b/lib/node_modules/@stdlib/stats/strided/wasm/dmeanwd/lib/module.js @@ -33,7 +33,7 @@ var wasmBinary = require( './binary.js' ); // MAIN // /** -* BLAS routine WebAssembly module wrapper constructor. +* WebAssembly module wrapper constructor. * * @constructor * @param {Object} memory - WebAssembly memory instance diff --git a/lib/node_modules/@stdlib/stats/strided/wasm/dmeanwd/test/test.routine.js b/lib/node_modules/@stdlib/stats/strided/wasm/dmeanwd/test/test.routine.js index d90a5804a8e1..806b3de987e3 100644 --- a/lib/node_modules/@stdlib/stats/strided/wasm/dmeanwd/test/test.routine.js +++ b/lib/node_modules/@stdlib/stats/strided/wasm/dmeanwd/test/test.routine.js @@ -52,7 +52,7 @@ tape( 'the module instance returned by the constructor inherits from a module wr t.end(); }); -tape( 'the module instance returned by the constructor inherits from a BLAS routine module', function test( t ) { +tape( 'the module instance returned by the constructor inherits from a routine module', function test( t ) { var mod = new Routine(); t.strictEqual( mod instanceof Module, true, 'returns expected value' ); t.end();