Skip to content

Commit 805f439

Browse files
committed
chore: minor 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: 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 3753ee5 commit 805f439

File tree

12 files changed

+13
-13
lines changed

12 files changed

+13
-13
lines changed

lib/node_modules/@stdlib/_tools/utils/jsdelivr-url/test/test.validate.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ tape( 'if provided an `options` argument which is not an object, the function re
5656
t.end();
5757
});
5858

59-
tape( 'if provided a `slug` option which is not an string primitive, the function returns a type error', function test( t ) {
59+
tape( 'if provided a `slug` option which is not a string primitive, the function returns a type error', function test( t ) {
6060
var values;
6161
var err;
6262
var i;
@@ -83,7 +83,7 @@ tape( 'if provided a `slug` option which is not an string primitive, the functio
8383
t.end();
8484
});
8585

86-
tape( 'if provided a `file` option which is not an string primitive, the function returns a type error', function test( t ) {
86+
tape( 'if provided a `file` option which is not a string primitive, the function returns a type error', function test( t ) {
8787
var values;
8888
var err;
8989
var i;

lib/node_modules/@stdlib/nlp/lda/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ function lda( documents, K, options ) {
114114
// Hyper-parameter of Dirichlet distribution of phi:
115115
beta = opts.beta || 0.1;
116116

117-
// Extract words & construct vocabulary:s
117+
// Extract words & construct vocabulary:
118118
vocab = [];
119119
w = [];
120120
pos = 0;

lib/node_modules/@stdlib/streams/node/stderr/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ stderr.write( 'Oh no!', 'utf8' );
4949
## Notes
5050

5151
- Unlike other streams, `stderr` can **never** be closed and, thus, never emits a `'finish'` event.
52-
- Although rare, writes can block when output is redirected to a file.
52+
- Although rare, writes can block when output is redirected to a file.
5353

5454
</section>
5555

lib/node_modules/@stdlib/streams/node/stdout/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ stdout.write( 'beep', 'utf8' );
4949
## Notes
5050

5151
- Unlike other streams, `stdout` can **never** be closed and, thus, never emits a `'finish'` event.
52-
- Although rare, writes can block when output is redirected to a file.
52+
- Although rare, writes can block when output is redirected to a file.
5353

5454
</section>
5555

lib/node_modules/@stdlib/utils/do-until-each-right/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ tape( 'the function returns the input collection', function test( t ) {
131131
var out;
132132

133133
function predicate() {
134-
t.pass( 'invoked predicated function' );
134+
t.pass( 'invoked predicate function' );
135135
return false;
136136
}
137137

lib/node_modules/@stdlib/utils/do-until-each/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ tape( 'the function returns the input collection', function test( t ) {
155155
var out;
156156

157157
function predicate() {
158-
t.pass( 'invoked predicated function' );
158+
t.pass( 'invoked predicate function' );
159159
return false;
160160
}
161161

lib/node_modules/@stdlib/utils/do-while-each-right/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ tape( 'the function returns the input collection', function test( t ) {
131131
var out;
132132

133133
function predicate() {
134-
t.pass( 'invoked predicated function' );
134+
t.pass( 'invoked predicate function' );
135135
return true;
136136
}
137137

lib/node_modules/@stdlib/utils/do-while-each/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ tape( 'the function returns the input collection', function test( t ) {
155155
var out;
156156

157157
function predicate() {
158-
t.pass( 'invoked predicated function' );
158+
t.pass( 'invoked predicate function' );
159159
return true;
160160
}
161161

lib/node_modules/@stdlib/utils/until-each-right/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ tape( 'the function returns the input collection', function test( t ) {
130130
var out;
131131

132132
function predicate() {
133-
t.pass( 'invoked predicated function' );
133+
t.pass( 'invoked predicate function' );
134134
return false;
135135
}
136136

lib/node_modules/@stdlib/utils/until-each/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ tape( 'the function returns the input collection', function test( t ) {
147147
var out;
148148

149149
function predicate() {
150-
t.pass( 'invoked predicated function' );
150+
t.pass( 'invoked predicate function' );
151151
return false;
152152
}
153153

0 commit comments

Comments
 (0)