Skip to content

Commit 4705caf

Browse files
authored
docs: fix descriptions
Signed-off-by: Athan <kgryte@gmail.com>
1 parent 044bbfb commit 4705caf

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • lib/node_modules/@stdlib/stats/nanmeanwd/docs/types

lib/node_modules/@stdlib/stats/nanmeanwd/docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ interface Options extends BaseOptions {
6363
*/
6464
interface Unary {
6565
/**
66-
* Computes the arithmetic mean along one or more ndarray dimensions using Welford's algorithm, ignoring `NaN` values.
66+
* Computes the arithmetic mean along one or more ndarray dimensions, ignoring `NaN` values and using Welford's algorithm.
6767
*
6868
* @param x - input ndarray
6969
* @param options - function options
@@ -83,7 +83,7 @@ interface Unary {
8383
<T = unknown, U = unknown>( x: InputArray<T>, options?: Options ): OutputArray<U>; // 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`.
8484

8585
/**
86-
* Computes the arithmetic mean along one or more ndarray dimensions using Welford's algorithm, ignoring `NaN` values, and assigns results to a provided output ndarray.
86+
* Computes the arithmetic mean along one or more ndarray dimensions, ignoring `NaN` values and using Welford's algorithm, and assigns results to a provided output ndarray.
8787
*
8888
* @param x - input ndarray
8989
* @param out - output ndarray
@@ -110,7 +110,7 @@ interface Unary {
110110
}
111111

112112
/**
113-
* Computes the arithmetic mean along one or more ndarray dimensions using Welford's algorithm, ignoring `NaN` values.
113+
* Computes the arithmetic mean along one or more ndarray dimensions, ignoring `NaN` values and using Welford's algorithm.
114114
*
115115
* @param x - input ndarray
116116
* @param options - function options

0 commit comments

Comments
 (0)