Skip to content

Commit 9c78425

Browse files
committed
fix: description
--- 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 7449988 commit 9c78425

File tree

2 files changed

+43
-43
lines changed

2 files changed

+43
-43
lines changed

lib/node_modules/@stdlib/ndarray/base/every-by/test/test.1d.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ tape( 'main export is a function', function test( t ) {
3838
t.end();
3939
});
4040

41-
tape( 'the function tests whether every element in a 1-dimensional ndarray is truthy', function test( t ) {
41+
tape( 'the function tests whether every element in a 1-dimensional ndarray passes a test implemented by a predicate function', function test( t ) {
4242
var actual;
4343
var x;
4444

@@ -59,7 +59,7 @@ tape( 'the function tests whether every element in a 1-dimensional ndarray is tr
5959
}
6060
});
6161

62-
tape( 'the function tests whether every element in a 1-dimensional ndarray is truthy (accessors)', function test( t ) {
62+
tape( 'the function tests whether every element in a 1-dimensional ndarray passes a test implemented by a predicate function (accessors)', function test( t ) {
6363
var actual;
6464
var x;
6565

@@ -80,7 +80,7 @@ tape( 'the function tests whether every element in a 1-dimensional ndarray is tr
8080
}
8181
});
8282

83-
tape( 'the function tests whether every element in a 1-dimensional ndarray is truthy (complex)', function test( t ) {
83+
tape( 'the function tests whether every element in a 1-dimensional ndarray passes a test implemented by a predicate function (complex)', function test( t ) {
8484
var actual;
8585
var x;
8686

0 commit comments

Comments
 (0)