diff --git a/lib/node_modules/@stdlib/array/base/for-each/docs/repl.txt b/lib/node_modules/@stdlib/array/base/for-each/docs/repl.txt index 23f7d781dc22..0ae0bc7b2b65 100644 --- a/lib/node_modules/@stdlib/array/base/for-each/docs/repl.txt +++ b/lib/node_modules/@stdlib/array/base/for-each/docs/repl.txt @@ -23,7 +23,7 @@ Callback function. thisArg: any (optional) - Callback function execution context. + Callback execution context. Examples -------- diff --git a/lib/node_modules/@stdlib/array/base/for-each/docs/types/index.d.ts b/lib/node_modules/@stdlib/array/base/for-each/docs/types/index.d.ts index f542aadad06e..550736eb67af 100644 --- a/lib/node_modules/@stdlib/array/base/for-each/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/array/base/for-each/docs/types/index.d.ts @@ -40,7 +40,7 @@ type Unary = ( this: V, value: T ) => void; * @param value - current array element * @param index - current array element index */ -type Binary = ( this: V, value: T, indices: Array ) => void; +type Binary = ( this: V, value: T, index: number ) => void; /** * Callback invoked for each array element. @@ -49,7 +49,7 @@ type Binary = ( this: V, value: T, indices: Array ) => void; * @param index - current array element index * @param arr - input array */ -type Ternary = ( this: V, value: T, indices: Array, arr: U ) => void; +type Ternary = ( this: V, value: T, index: number, arr: U ) => void; /** * Callback invoked for each array element. @@ -65,7 +65,7 @@ type Callback = Nullary | Unary | Binary | Ternary( x: AccessorArrayLike, fcn * * @param x - input array * @param fcn - callback function -* @param thisArg - callback function execution context +* @param thisArg - callback execution context * * @example * var naryFunction = require( '@stdlib/utils/nary-function' );