Skip to content

Commit f155b41

Browse files
authored
docs: update descriptions
Signed-off-by: Athan <[email protected]>
1 parent e1b62a8 commit f155b41

File tree

1 file changed

+5
-5
lines changed
  • lib/node_modules/@stdlib/stats/base/ndarray/range-by/docs/types

1 file changed

+5
-5
lines changed

lib/node_modules/@stdlib/stats/base/ndarray/range-by/docs/types/index.d.ts

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

2525
/**
26-
* Returns the result of callback function.
26+
* Callback function applied to each element of an ndarray.
2727
*
2828
* @returns result
2929
*/
3030
type Nullary<ThisArg> = ( this: ThisArg ) => number | void;
3131

3232
/**
33-
* Returns the result of callback function.
33+
* Callback function applied to each element of an ndarray.
3434
*
3535
* @param value - current array element
3636
* @returns result
3737
*/
3838
type Unary<T, ThisArg> = ( this: ThisArg, value: T ) => number | void;
3939

4040
/**
41-
* Returns the result of callback function.
41+
* Callback function applied to each element of an ndarray.
4242
*
4343
* @param value - current array element
4444
* @param index - current array element index
@@ -47,7 +47,7 @@ type Unary<T, ThisArg> = ( this: ThisArg, value: T ) => number | void;
4747
type Binary<T, ThisArg> = ( this: ThisArg, value: T, index: number ) => number | void;
4848

4949
/**
50-
* Returns the result of callback function.
50+
* Callback function applied to each element of an ndarray.
5151
*
5252
* @param value - current array element
5353
* @param index - current array element index
@@ -57,7 +57,7 @@ type Binary<T, ThisArg> = ( this: ThisArg, value: T, index: number ) => number |
5757
type Ternary<T, U, ThisArg> = ( this: ThisArg, value: T, index: number, array: U ) => number | void;
5858

5959
/**
60-
* Returns the result of callback function.
60+
* Callback function applied to each element of an ndarray.
6161
*
6262
* @param value - current array element
6363
* @param index - current array element index

0 commit comments

Comments
 (0)