diff --git a/lib/node_modules/@stdlib/_tools/github/star-repo/lib/factory.js b/lib/node_modules/@stdlib/_tools/github/star-repo/lib/factory.js index 2b4360e7cb5d..871b31283a4d 100644 --- a/lib/node_modules/@stdlib/_tools/github/star-repo/lib/factory.js +++ b/lib/node_modules/@stdlib/_tools/github/star-repo/lib/factory.js @@ -84,19 +84,20 @@ function factory( options, clbk ) { throw new Error( format( 'invalid argument. Repository slug must consist of an owner and a repository (e.g., "stdlib-js/utils"). Value: `%s`.', slug ) ); } query( slug, opts, done ); - /** - * Callback invoked after receiving an API response. - * - * @private - * @param {(Error|null)} error - error object - * @param {Object} info - response info - * @returns {void} - */ - function done( error, info ) { - error = error || null; - info = info || null; - clbk( error, info ); - } + } + + /** + * Callback invoked after receiving an API response. + * + * @private + * @param {(Error|null)} error - error object + * @param {Object} info - response info + * @returns {void} + */ + function done( error, info ) { + error = error || null; + info = info || null; + clbk( error, info ); } } diff --git a/lib/node_modules/@stdlib/strided/base/binary-dtype-signatures/lib/index.js b/lib/node_modules/@stdlib/strided/base/binary-dtype-signatures/lib/index.js index fca4f898f25a..fbff580f410d 100644 --- a/lib/node_modules/@stdlib/strided/base/binary-dtype-signatures/lib/index.js +++ b/lib/node_modules/@stdlib/strided/base/binary-dtype-signatures/lib/index.js @@ -34,7 +34,7 @@ * ]; * * var sigs = signatures( dtypes, dtypes, dtypes ); -* // returns [ 'float64', 'float64', 'float64', ... ] +* // returns [ 'float32', 'float32', 'float32', ... ] */ // MODULES //