Skip to content

Commit 7f0568c

Browse files
committed
bench: 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: na - 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 0482e74 commit 7f0568c

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

lib/node_modules/@stdlib/array/base/entries2objects/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var entries2objects = require( './../lib' );
2929

3030
// MAIN //
3131

32-
bench( pkg+':len=100', function benchmark( b ) {
32+
bench( pkg+':len=10', function benchmark( b ) {
3333
var labels;
3434
var x;
3535
var i;

lib/node_modules/@stdlib/array/base/entries2views/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var entries2views = require( './../lib' );
2929

3030
// MAIN //
3131

32-
bench( pkg+':len=100', function benchmark( b ) {
32+
bench( pkg+':len=10', function benchmark( b ) {
3333
var fields;
3434
var x;
3535
var i;

lib/node_modules/@stdlib/array/base/zip/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var zip = require( './../lib' );
2929

3030
// MAIN //
3131

32-
bench( pkg+':len=100', function benchmark( b ) {
32+
bench( pkg+':len=10', function benchmark( b ) {
3333
var x;
3434
var i;
3535
var v;

lib/node_modules/@stdlib/array/base/zip2object/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var zip2object = require( './../lib' );
2929

3030
// MAIN //
3131

32-
bench( pkg+':len=100', function benchmark( b ) {
32+
bench( pkg+':len=10', function benchmark( b ) {
3333
var x;
3434
var i;
3535
var v;

lib/node_modules/@stdlib/array/base/zip2objects/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var zip2objects = require( './../lib' );
2929

3030
// MAIN //
3131

32-
bench( pkg+':len=100', function benchmark( b ) {
32+
bench( pkg+':len=10', function benchmark( b ) {
3333
var labels;
3434
var x;
3535
var i;

lib/node_modules/@stdlib/array/base/zip2views/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var zip2views = require( './../lib' );
2929

3030
// MAIN //
3131

32-
bench( pkg+':len=100', function benchmark( b ) {
32+
bench( pkg+':len=10', function benchmark( b ) {
3333
var labels;
3434
var x;
3535
var i;

0 commit comments

Comments
 (0)