Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ var wasmBinary = require( './binary.js' );
// MAIN //

/**
* BLAS routine WebAssembly module wrapper constructor.
* New routine WebAssembly module wrapper constructor.
*
* @constructor
* @param {Object} memory - WebAssembly memory instance
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 new routine module', function test( t ) {
var mod = new Routine();
t.strictEqual( mod instanceof Module, true, 'returns expected value' );
t.end();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ var wasmBinary = require( './binary.js' );
// MAIN //

/**
* BLAS routine WebAssembly module wrapper constructor.
* New routine WebAssembly module wrapper constructor.
*
* @constructor
* @param {Object} memory - WebAssembly memory instance
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 new routine module', function test( t ) {
var mod = new Routine();
t.strictEqual( mod instanceof Module, true, 'returns expected value' );
t.end();
Expand Down