Skip to content

Commit 902ad9d

Browse files
committed
fix lint
1 parent d93dd11 commit 902ad9d

File tree

1 file changed

+3
-4
lines changed
  • lib/node_modules/@stdlib/_tools/static-analysis/js/summarize-file-list

1 file changed

+3
-4
lines changed

lib/node_modules/@stdlib/_tools/static-analysis/js/summarize-file-list/README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ var analyze = require( '@stdlib/_tools/static-analysis/js/summarize-file-list' )
4747
Performs a static [summary analysis][@stdlib/_tools/static-analysis/js/incr/program-summary] for a list of JavaScript files.
4848

4949
```javascript
50-
var files = [ './beep.js', './boop.js' ];
50+
var files = [ '/foo/bar/beep.js', '/foo/bar/boop.js' ];
5151

5252
function clbk( error, results ) {
5353
if ( error ) {
@@ -58,7 +58,6 @@ function clbk( error, results ) {
5858

5959
analyze( files, clbk );
6060
// throws <Error>
61-
6261
```
6362

6463
The function accepts the following `options`:
@@ -68,7 +67,7 @@ The function accepts the following `options`:
6867
By default, the function performs a cumulative static [summary analysis][@stdlib/_tools/static-analysis/js/incr/program-summary]. To return a separate [program summary][@stdlib/_tools/static-analysis/js/program-summary] for each file in `files`, set the `cumulative` option to `false`.
6968

7069
```javascript
71-
var files = [ './beep.js', './boop.js' ];
70+
var files = [ '/foo/bar/beep.js', '/foo/bar/boop.js' ];
7271

7372
var opts = {
7473
'cumulative': false
@@ -91,7 +90,7 @@ analyze( files, opts, clbk );
9190
Synchronously performs a static [summary analysis][@stdlib/_tools/static-analysis/js/incr/program-summary] for a list of JavaScript files.
9291

9392
```javascript
94-
var files = [ './beep.js', './boop.js' ];
93+
var files = [ '/foo/bar/beep.js', '/foo/bar/boop.js' ];
9594

9695
var results = analyze.sync( files );
9796
// throws <Error>

0 commit comments

Comments
 (0)