Skip to content

Commit 010db5c

Browse files
committed
test: fix descriptions
--- 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: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 5afc506 commit 010db5c

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

lib/node_modules/@stdlib/_tools/eslint/rules/jsdoc-tag-names/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ tape( 'main export is an object', function test( t ) {
4040
t.end();
4141
});
4242

43-
tape( 'the function positively validates code with JSDoc comments that contain only allowed JSDoc tags.', function test( t ) {
43+
tape( 'the function positively validates code with JSDoc comments that contain only allowed JSDoc tags', function test( t ) {
4444
var tester = new RuleTester();
4545

4646
try {

lib/node_modules/@stdlib/_tools/eslint/rules/no-builtin-math/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ tape( 'main export is an object', function test( t ) {
4040
t.end();
4141
});
4242

43-
tape( 'the function positively validates code using `stdlib` equivalents instead of the global `Math` object.', function test( t ) {
43+
tape( 'the function positively validates code using `stdlib` equivalents instead of the global `Math` object', function test( t ) {
4444
var tester = new RuleTester();
4545

4646
try {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ tape( 'the function returns an iterator protocol-compliant object', function tes
159159
}
160160
});
161161

162-
tape( 'the function returns an iterator protocol-compliant object which invokes a function for each iterated value before returning the iterated value until either a `predicate` function returns `true` or the iterator has iterated over all values.', function test( t ) {
162+
tape( 'the function returns an iterator protocol-compliant object which invokes a function for each iterated value before returning the iterated value until either a `predicate` function returns `true` or the iterator has iterated over all values', function test( t ) {
163163
var expected;
164164
var opts;
165165
var rand;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ tape( 'the function returns an iterator protocol-compliant object', function tes
159159
}
160160
});
161161

162-
tape( 'the function returns an iterator protocol-compliant object which invokes a function for each iterated value before returning the iterated value until either a `predicate` function returns `false` or the iterator has iterated over all values.', function test( t ) {
162+
tape( 'the function returns an iterator protocol-compliant object which invokes a function for each iterated value before returning the iterated value until either a `predicate` function returns `false` or the iterator has iterated over all values', function test( t ) {
163163
var expected;
164164
var opts;
165165
var rand;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ tape( 'the function returns an iterator protocol-compliant object', function tes
159159
}
160160
});
161161

162-
tape( 'the function returns an iterator protocol-compliant object which invokes a function for each iterated value before returning the iterated value until either a `predicate` function returns `true` or the iterator has iterated over all values.', function test( t ) {
162+
tape( 'the function returns an iterator protocol-compliant object which invokes a function for each iterated value before returning the iterated value until either a `predicate` function returns `true` or the iterator has iterated over all values', function test( t ) {
163163
var expected;
164164
var opts;
165165
var rand;

lib/node_modules/@stdlib/iter/while-each/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ tape( 'the function returns an iterator protocol-compliant object', function tes
159159
}
160160
});
161161

162-
tape( 'the function returns an iterator protocol-compliant object which invokes a function for each iterated value before returning the iterated value until either a `predicate` function returns `false` or the iterator has iterated over all values.', function test( t ) {
162+
tape( 'the function returns an iterator protocol-compliant object which invokes a function for each iterated value before returning the iterated value until either a `predicate` function returns `false` or the iterator has iterated over all values', function test( t ) {
163163
var expected;
164164
var opts;
165165
var rand;

lib/node_modules/@stdlib/process/exec-path/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ tape( 'main export is either a string or `null`', function test( t ) {
3434
t.end();
3535
});
3636

37-
tape( 'if running in a Node.js process, the main export is a string; otherwise, the export is equal to `null`.', function test( t ) {
37+
tape( 'if running in a Node.js process, the main export is a string; otherwise, the export is equal to `null`', function test( t ) {
3838
if ( IS_NODE ) {
3939
t.strictEqual( typeof EXEC_PATH, 'string', 'exports a string' );
4040
} else {

lib/node_modules/@stdlib/process/node-version/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ tape( 'main export is either a string or `null`', function test( t ) {
3434
t.end();
3535
});
3636

37-
tape( 'if running in a Node.js process, the main export is a string; otherwise, the export is equal to `null`.', function test( t ) {
37+
tape( 'if running in a Node.js process, the main export is a string; otherwise, the export is equal to `null`', function test( t ) {
3838
if ( IS_NODE ) {
3939
t.strictEqual( typeof VERSION, 'string', 'exports a string' );
4040
} else {

0 commit comments

Comments
 (0)