Skip to content

Commit 21bfa5b

Browse files
committed
chore: minor clean-up
1 parent e6eef32 commit 21bfa5b

File tree

11 files changed

+13
-13
lines changed

11 files changed

+13
-13
lines changed

lib/node_modules/@stdlib/_tools/benchmarks/browser-build/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ function clbk( error, bool ) {
102102
}
103103
```
104104

105-
To mount a bundle on a URL path, set the `mount`option.
105+
To mount a bundle on a URL path, set the `mount` option.
106106

107107
<!-- eslint-disable stdlib/no-redeclare -->
108108

@@ -226,7 +226,7 @@ Options:
226226

227227
### Notes
228228

229-
- If not provided a root directory, the root directory is the current working directory.
229+
- If not provided a root directory, the root directory is the current working directory.
230230

231231
</section>
232232

lib/node_modules/@stdlib/_tools/benchmarks/bundle/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ Options:
184184

185185
### Notes
186186

187-
- If not provided a root directory, the root directory is the current working directory.
187+
- If not provided a root directory, the root directory is the current working directory.
188188

189189
</section>
190190

lib/node_modules/@stdlib/_tools/benchmarks/html/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
*
2929
* var bundle = '/foo/bar/bundle.js';
3030
* var opts = {
31-
* 'out': '/foo/bar/benchmarks.html';
31+
* 'out': '/foo/bar/benchmarks.html'
3232
* }
3333
*
3434
* build( bundle, opts, clbk );

lib/node_modules/@stdlib/_tools/bundle/bundlify/lib/include.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* @private
2727
* @param {StringArray} arr - input array
2828
* @param {string} pattern - pattern used to filter elements
29-
* @returns {(EmptyArray|StringArray)} filter array
29+
* @returns {(EmptyArray|StringArray)} filtered array
3030
*/
3131
function include( arr, pattern ) {
3232
var out;

lib/node_modules/@stdlib/_tools/bundle/bundlify/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ if ( instanceOf( NAMES, Error ) ) {
7070
* @param {string} b.standalone - UMD export name
7171
* @param {string} b.namespace - namespace type ('flat' or 'tree')
7272
* @param {boolean} b.raw - boolean indicating whether to write a raw bundle to file
73-
* @param {boolean} b.minify - boolean indicating whether to minify a bundle
73+
* @param {boolean} b.minified - boolean indicating whether to minify a bundle
7474
* @param {StringArray} [b.include] - list of packages (and/or namespaces) to include in the bundle
7575
* @param {StringArray} [b.exclude] - list of packages (and/or namespaces) to exclude from the bundle
7676
* @param {Callback} clbk - callback to invoke upon completion

lib/node_modules/@stdlib/_tools/docs/www/benchmark-bundles/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* @example
2727
* var build = require( '@stdlib/_tools/docs/www/benchmark-bundles' );
2828
*
29-
* build( ./build', done );
29+
* build( './build', done );
3030
*
3131
* function done( error ) {
3232
* if ( error ) {

lib/node_modules/@stdlib/_tools/docs/www/benchmark-bundles/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ var debug = logger( 'benchmark-bundles:async' );
5050
* @param {string} [options.html='benchmark.html'] - HTML filename
5151
* @param {StringArray} [options.ignore=[]] - ignore patterns
5252
* @param {string} [options.mount='/'] - base URL mount
53-
* @param {Object} [options.packages_pattern='**\/package.json'] - glob pattern
54-
* @param {Object} [options.files_pattern='benchmark\/**\/benchmark*.js'] - glob pattern
53+
* @param {string} [options.packages_pattern='**\/package.json'] - glob pattern
54+
* @param {string} [options.files_pattern='benchmark\/**\/benchmark*.js'] - glob pattern
5555
* @param {string} [options.title='benchmark.html'] - HTML title
5656
* @param {Function} clbk - callback
5757
* @throws {TypeError} first argument must be a string

lib/node_modules/@stdlib/_tools/eslint/rules/doctest-quote-props/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var replace = require( '@stdlib/string/replace' );
3030

3131
// VARIABLES //
3232

33-
var debug = logger( 'eslint-return-annotations-quite-props' );
33+
var debug = logger( 'doctest-quote-props' );
3434
var RE_ANNOTATION = /^\s*(?:e\.g\.,){0,1} (returns|=>|throws) {0,1}([\s\S]*)/;
3535
var RE_TYPE_IDENTIFIER = /<[A-Z0-9]+>/gi;
3636
var RE_DOTS = /,?\n?\s+\.\.\./g;

lib/node_modules/@stdlib/_tools/lint/namespace-aliases/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
* if ( errs.length ) {
4747
* console.error( JSON.stringify( errs ) );
4848
* } else {
49-
* console.error( 'No detected errors' );
49+
* console.error( 'No detected errors.' );
5050
* }
5151
*/
5252

lib/node_modules/@stdlib/_tools/tests/bundle/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ Options:
184184

185185
### Notes
186186

187-
- If not provided a root directory, the root directory is the current working directory.
187+
- If not provided a root directory, the root directory is the current working directory.
188188

189189
</section>
190190

0 commit comments

Comments
 (0)