Skip to content

Commit 0b6de5b

Browse files
committed
Update comment
1 parent 0cb2aea commit 0b6de5b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/node_modules/@stdlib/utils/map-function/lib/map_function.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function mapFun( fcn, n, thisArg ) {
3535
if ( !isNonNegativeInteger( n ) ) {
3636
throw new TypeError( 'invalid input argument. Second argument must be a nonnegative integer. Value: `'+n+'`.' );
3737
}
38-
// Note: we explicitly do not preallocate in order to ensure "fast" elements for large output arrays (i.e., >64K elements).
38+
// Note: we explicitly do not preallocate in order to ensure "fast" elements for large output arrays.
3939
out = [];
4040
for ( i = 0; i < n; i++ ) {
4141
out.push( fcn.call( thisArg, i ) );

0 commit comments

Comments
 (0)