Skip to content

Commit f4be00e

Browse files
committed
Update comment
1 parent 0b6de5b commit f4be00e

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/utils/map-function-async/lib

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/utils/map-function-async/lib/limit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function limit( n, opts, fcn, done ) {
3535

3636
debug( 'Number of invocations: %d', n );
3737

38-
// Note: we explicitly preallocate in order to facilitate inserting a function result into its associated output array index. This means we do not ensure "fast" elements for large output arrays (i.e., >64K elements).
38+
// Note: we explicitly preallocate in order to facilitate inserting a function result into its associated output array index. This means we do not ensure "fast" elements for large output arrays.
3939
out = new Array( n );
4040
if ( n === 0 ) {
4141
debug( 'Finished invoking a function.' );

0 commit comments

Comments
 (0)