Skip to content

Commit 9048d5e

Browse files
authored
docs: update descriptions
Signed-off-by: Athan <kgryte@gmail.com>
1 parent 3231beb commit 9048d5e

1 file changed

Lines changed: 2 additions & 2 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ interface Unary {
158158
<T = unknown, U extends InputArray<T> = InputArray<T>, ThisArg = unknown>( x: U, options: Options, clbk: Callback<T, U, ThisArg>, thisArg?: ThisParameterType<Callback<T, U, ThisArg>> ): OutputArray<number>; // NOTE: we lose type specificity here, but retaining specificity would likely be difficult and/or tedious to completely enumerate, as the output ndarray data type is dependent on how `x` interacts with output data type policy and whether that policy has been overridden by `options.dtype`.
159159

160160
/**
161-
* Computes the minimum value along one or more ndarray dimensions according to a callback function and assigns results to a provided output ndarray, ignoring NaN values.
161+
* Computes the minimum value along one or more ndarray dimensions according to a callback function, ignoring NaN values, and assigns results to a provided output ndarray.
162162
*
163163
* @param x - input ndarray
164164
* @param out - output ndarray
@@ -189,7 +189,7 @@ interface Unary {
189189
assign<T = unknown, U extends InputArray<T> = InputArray<T>, V extends OutputArray<unknown> = OutputArray<unknown>, ThisArg = unknown>( x: U, out: V, clbk: Callback<T, U, ThisArg>, thisArg?: ThisParameterType<Callback<T, U, ThisArg>> ): V;
190190

191191
/**
192-
* Computes the minimum value along one or more ndarray dimensions according to a callback function and assigns results to a provided output ndarray, ignoring NaN values.
192+
* Computes the minimum value along one or more ndarray dimensions according to a callback function, ignoring NaN values, and assigns results to a provided output ndarray.
193193
*
194194
* @param x - input ndarray
195195
* @param out - output ndarray

0 commit comments

Comments
 (0)