Skip to content

Commit d54376d

Browse files
authored
docs: apply suggestions from code review
Signed-off-by: Muhammad Haris <[email protected]>
1 parent 1e166ae commit d54376d

File tree

1 file changed

+5
-5
lines changed
  • lib/node_modules/@stdlib/array/base/for-each/docs/types

1 file changed

+5
-5
lines changed

lib/node_modules/@stdlib/array/base/for-each/docs/types/index.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,27 +23,27 @@
2323
import { Collection, AccessorArrayLike } from '@stdlib/types/array';
2424

2525
/**
26-
* Callback invoked for each ndarray element.
26+
* Callback invoked for each array element.
2727
*/
2828
type Nullary<V> = ( this: V ) => void;
2929

3030
/**
31-
* Callback invoked for each ndarray element.
31+
* Callback invoked for each array element.
3232
*
3333
* @param value - current array element
3434
*/
3535
type Unary<T, V> = ( this: V, value: T ) => void;
3636

3737
/**
38-
* Callback invoked for each ndarray element.
38+
* Callback invoked for each array element.
3939
*
4040
* @param value - current array element
4141
* @param index - current array element index
4242
*/
4343
type Binary<T, V> = ( this: V, value: T, indices: Array<number> ) => void;
4444

4545
/**
46-
* Callback invoked for each ndarray element.
46+
* Callback invoked for each array element.
4747
*
4848
* @param value - current array element
4949
* @param index - current array element index
@@ -52,7 +52,7 @@ type Binary<T, V> = ( this: V, value: T, indices: Array<number> ) => void;
5252
type Ternary<T, U, V> = ( this: V, value: T, indices: Array<number>, arr: U ) => void;
5353

5454
/**
55-
* Callback invoked for each ndarray element.
55+
* Callback invoked for each array element.
5656
*
5757
* @param value - current array element
5858
* @param index - current array element index

0 commit comments

Comments
 (0)