diff --git a/lib/node_modules/@stdlib/ndarray/docs/types/index.d.ts b/lib/node_modules/@stdlib/ndarray/docs/types/index.d.ts index 38767c87cd68..55c0849d9750 100644 --- a/lib/node_modules/@stdlib/ndarray/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/ndarray/docs/types/index.d.ts @@ -606,10 +606,7 @@ interface Namespace { * * // Perform reduction: * var out = ns.countFalsy( x ); - * // returns - * - * var v = out.get(); - * // returns 1 + * // returns [ 1 ] * * @example * var Float64Array = require( '@stdlib/array/float64' ); @@ -638,10 +635,7 @@ interface Namespace { * * // Perform reduction: * var out = ns.countFalsy.assign( x, y ); - * // returns - * - * var v = out.get(); - * // returns 1 + * // returns [ 1 ] */ countFalsy: typeof countFalsy; @@ -1285,7 +1279,7 @@ interface Namespace { * @param options - function options * @param options.dims - list of dimensions over which to perform a reduction * @param options.keepdims - boolean indicating whether the reduced dimensions should be included in the returned ndarray as singleton dimensions (default: false) - * @param options.sentinelValue - sentinel value + * @param options.sentinel - sentinel value * @param predicate - predicate function * @param thisArg - predicate execution context * @returns output ndarray