Skip to content

Commit 60ddfd9

Browse files
chore: clean up
--- 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: passed - task: lint_package_json status: na - task: lint_repl_help status: passed - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: passed - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: passed - 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 c87eb41 commit 60ddfd9

File tree

10 files changed

+20
-20
lines changed

10 files changed

+20
-20
lines changed

lib/node_modules/@stdlib/stats/strided/wasm/dmeanpw/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# dmeanpw
2222

23-
> Computes the [arithmetic mean][arithmetic-mean] of a double-precision floating-point strided array using pairwise summation.
23+
> Compute the [arithmetic mean][arithmetic-mean] of a double-precision floating-point strided array using pairwise summation.
2424
2525
<section class="usage">
2626

@@ -121,7 +121,7 @@ var mem = new Memory({
121121
'maximum': 100
122122
});
123123

124-
// Create a BLAS routine:
124+
// Create a new routine:
125125
var mod = new dmeanpw.Module( mem );
126126
// returns <Module>
127127

@@ -146,7 +146,7 @@ var mem = new Memory({
146146
'maximum': 100
147147
});
148148

149-
// Create a BLAS routine:
149+
// Create a new routine:
150150
var mod = new dmeanpw.Module( mem );
151151
// returns <Module>
152152

@@ -193,7 +193,7 @@ var mem = new Memory({
193193
'maximum': 100
194194
});
195195

196-
// Create a BLAS routine:
196+
// Create a new routine:
197197
var mod = new dmeanpw.Module( mem );
198198
// returns <Module>
199199

lib/node_modules/@stdlib/stats/strided/wasm/dmeanpw/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/dmeanpw/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/dmeanpw/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
~0.3333
8282

8383
// Using offset parameter:
84-
> var x = new {{alias:@stdlib/array/float64}}( [ 1.0, -2.0, 3.0, 2.0, 5.0, -1.0 ] );
84+
> x = new {{alias:@stdlib/array/float64}}( [ 1.0, -2.0, 3.0, 2.0, 5.0, -1.0 ] );
8585
> {{alias}}.ndarray( 3, x, 2, 1 )
8686
~-0.3333
8787

lib/node_modules/@stdlib/stats/strided/wasm/dmeanpw/docs/types/index.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ interface ModuleConstructor {
4242
* 'maximum': 100
4343
* });
4444
*
45-
* // Create a BLAS routine:
45+
* // Create a new routine:
4646
* var mod = new dmeanpw.Module( mem );
4747
* // returns <Module>
4848
*
@@ -83,7 +83,7 @@ interface ModuleConstructor {
8383
* 'maximum': 100
8484
* });
8585
*
86-
* // Create a BLAS routine:
86+
* // Create a new routine:
8787
* var mod = dmeanpw.Module( mem );
8888
* // returns <Module>
8989
*
@@ -131,7 +131,7 @@ interface Module extends ModuleWrapper {
131131
* 'maximum': 100
132132
* });
133133
*
134-
* // Create a BLAS routine:
134+
* // Create a new routine:
135135
* var mod = new dmeanpw.Module( mem );
136136
* // returns <Module>
137137
*
@@ -175,7 +175,7 @@ interface Module extends ModuleWrapper {
175175
* 'maximum': 100
176176
* });
177177
*
178-
* // Create a BLAS routine:
178+
* // Create a new routine:
179179
* var mod = new dmeanpw.Module( mem );
180180
* // returns <Module>
181181
*
@@ -258,7 +258,7 @@ interface Routine extends ModuleWrapper {
258258
* 'maximum': 100
259259
* });
260260
*
261-
* // Create a BLAS routine:
261+
* // Create a new routine:
262262
* var mod = new dmeanpw.Module( mem );
263263
* // returns <Module>
264264
*

lib/node_modules/@stdlib/stats/strided/wasm/dmeanpw/examples/little_endian_arrays.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function main() {
3636
'maximum': 100
3737
});
3838

39-
// Create a BLAS routine:
39+
// Create a new routine:
4040
var mod = new dmeanpw.Module( mem );
4141
// returns <Module>
4242

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function main() {
3434
'maximum': 100
3535
});
3636

37-
// Create a BLAS routine:
37+
// Create a new routine:
3838
var mod = new dmeanpw.Module( mem );
3939
// returns <Module>
4040

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* 'maximum': 100
5858
* });
5959
*
60-
* // Create a BLAS routine:
60+
* // Create a new routine:
6161
* var mod = new dmeanpw.Module( mem );
6262
* // returns <Module>
6363
*

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

Lines changed: 4 additions & 4 deletions
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+
* New routine WebAssembly module wrapper constructor.
3737
*
3838
* @constructor
3939
* @param {Object} memory - WebAssembly memory instance
@@ -50,7 +50,7 @@ var wasmBinary = require( './binary.js' );
5050
* 'maximum': 100
5151
* });
5252
*
53-
* // Create a BLAS routine:
53+
* // Create a new routine:
5454
* var dmeanpw = new Module( mem );
5555
* // returns <Module>
5656
*
@@ -115,7 +115,7 @@ inherits( Module, WasmModule );
115115
* 'maximum': 100
116116
* });
117117
*
118-
* // Create a BLAS routine:
118+
* // Create a new routine:
119119
* var dmeanpw = new Module( mem );
120120
* // returns <Module>
121121
*
@@ -165,7 +165,7 @@ setReadOnly( Module.prototype, 'main', function dmeanpw( N, xptr, strideX ) {
165165
* 'maximum': 100
166166
* });
167167
*
168-
* // Create a BLAS routine:
168+
* // Create a new routine:
169169
* var dmeanpw = new Module( mem );
170170
* // returns <Module>
171171
*

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 BLAS routine module', function test( t ) {
55+
tape( 'the module instance returned by the constructor inherits from a new 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)