Skip to content

Commit 7c873b0

Browse files
authored
docs: fix descriptions
Signed-off-by: Athan <kgryte@gmail.com>
1 parent 9048d5e commit 7c873b0

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

  • lib/node_modules/@stdlib/stats/nanmin-by/docs/types

lib/node_modules/@stdlib/stats/nanmin-by/docs/types/index.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,22 @@ type InputArray<T> = typedndarray<T>;
3434
type OutputArray<U> = typedndarray<U>;
3535

3636
/**
37-
* Returns the result of callback function.
37+
* Callback function applied to each element of an ndarray.
3838
*
3939
* @returns result
4040
*/
4141
type NullaryCallback<ThisArg> = ( this: ThisArg ) => number | void;
4242

4343
/**
44-
* Returns the result of callback function.
44+
* Callback function applied to each element of an ndarray.
4545
*
4646
* @param value - current array element
4747
* @returns result
4848
*/
4949
type UnaryCallback<T, ThisArg> = ( this: ThisArg, value: T ) => number | void;
5050

5151
/**
52-
* Returns the result of callback function.
52+
* Callback function applied to each element of an ndarray.
5353
*
5454
* @param value - current array element
5555
* @param index - current array element index
@@ -58,7 +58,7 @@ type UnaryCallback<T, ThisArg> = ( this: ThisArg, value: T ) => number | void;
5858
type BinaryCallback<T, ThisArg> = ( this: ThisArg, value: T, index: number ) => number | void;
5959

6060
/**
61-
* Returns the result of callback function.
61+
* Callback function applied to each element of an ndarray.
6262
*
6363
* @param value - current array element
6464
* @param index - current array element index
@@ -68,7 +68,7 @@ type BinaryCallback<T, ThisArg> = ( this: ThisArg, value: T, index: number ) =>
6868
type TernaryCallback<T, U, ThisArg> = ( this: ThisArg, value: T, index: number, array: U ) => number | void;
6969

7070
/**
71-
* Returns the result of callback function.
71+
* Callback function applied to each element of an ndarray.
7272
*
7373
* @param value - current array element
7474
* @param index - current array element index

0 commit comments

Comments
 (0)