Skip to content

Commit 7535095

Browse files
chore: fix JavaScript lint errors (issue #8253)
--- 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: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - 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 c8d88a1 commit 7535095

3 files changed

Lines changed: 3 additions & 6 deletions

File tree

lib/node_modules/@stdlib/utils/async/for-each-right/lib/factory.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,7 @@ var limit = require( './limit.js' );
7575
*
7676
* // Create a collection over which to iterate:
7777
* var files = [
78-
* './beep.js',
79-
* './boop.js'
78+
*
8079
* ];
8180
*
8281
* // Define a callback which handles errors:

lib/node_modules/@stdlib/utils/async/for-each-right/lib/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
* var forEachRightAsync = require( '@stdlib/utils/async/for-each-right' );
2929
*
3030
* var files = [
31-
* './beep.js',
32-
* './boop.js'
31+
3332
* ];
3433
*
3534
* function done( error ) {

lib/node_modules/@stdlib/utils/async/for-each-right/lib/main.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,7 @@ var factory = require( './factory.js' );
7373
* }
7474
*
7575
* var files = [
76-
* './beep.js',
77-
* './boop.js'
76+
7877
* ];
7978
*
8079
* forEachRightAsync( files, read, done );

0 commit comments

Comments
 (0)