Skip to content

Commit 3025363

Browse files
committed
Merge branch 'develop' into feat/is-almost-equal-f64
2 parents bd517b1 + 031d469 commit 3025363

File tree

157 files changed

+1276
-324
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

157 files changed

+1276
-324
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/bib/citation-reference/lib/async.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ var debug = logger( 'to-reference:async' );
4848
// MAIN //
4949

5050
/**
51-
* Asynchronously return a reference corresponding to a citation identifier.
51+
* Asynchronously returns a reference corresponding to a citation identifier.
5252
*
5353
* @param {string} id - citation identifier
5454
* @param {Options} [options] - function options

lib/node_modules/@stdlib/_tools/bib/citation-reference/lib/sync.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,15 @@ var debug = logger( 'to-reference:sync' );
4747
// MAIN //
4848

4949
/**
50-
* Synchronously return a reference corresponding to a citation identifier.
50+
* Synchronously returns a reference corresponding to a citation identifier.
5151
*
5252
* @param {string} id - citation identifier
5353
* @param {Options} [options] - function options
5454
* @param {string} [options.database] - path to a bibliography database file
5555
* @param {string} [options.csl] - path to a Citation Style Language (CSL) file
56+
* @throws {TypeError} first argument must be a string
57+
* @throws {TypeError} options argument must be an object
58+
* @throws {TypeError} must provide valid options
5659
* @returns {string} reference
5760
*
5861
* @example

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/docs/www/readme-fragment-file-tree/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/readme-fragment-file-tree' );
2828
*
29-
* build( ./build', done );
29+
* build( './build', done );
3030
*
3131
* function done( error ) {
3232
* if ( error ) {

0 commit comments

Comments
 (0)