diff --git a/lib/node_modules/@stdlib/utils/async/for-each/docs/types/index.d.ts b/lib/node_modules/@stdlib/utils/async/for-each/docs/types/index.d.ts index c13d320395fc..f29250a2e845 100644 --- a/lib/node_modules/@stdlib/utils/async/for-each/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/utils/async/for-each/docs/types/index.d.ts @@ -111,7 +111,7 @@ type Fcn = BinaryFcn | TernaryFcn | QuaternaryFcn; * @param collection - input collection * @param done - function to invoke upon completion */ -type FactoryFunction = ( collection: Collection, done: Callback ) => void; +type FactoryFunction = ( collection: Collection, done: Callback ) => void; /** * Interface for `forEachAsync`. @@ -277,7 +277,7 @@ interface ForEachAsync { * // Run `read` for each element in `files`: * forEach( files, done ); */ - factory( options: Options, fcn: Fcn ): FactoryFunction; + factory( options: Options, fcn: Fcn ): FactoryFunction; /** * Returns a function to invoke a function once for each element in a collection. @@ -328,7 +328,7 @@ interface ForEachAsync { * // Run `read` for each element in `files`: * forEach( files, done ); */ - factory( fcn: Fcn ): FactoryFunction; + factory( fcn: Fcn ): FactoryFunction; } /**