Skip to content

Commit 35a4b17

Browse files
authored
style: fix missing space
Signed-off-by: Athan <[email protected]>
1 parent 41ef40c commit 35a4b17

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/meankbn2/docs/types

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ interface Unary {
7575
* var x = array( [ 1.0, 2.0, -2.0, 4.0 ] );
7676
*
7777
* var y = meankbn2( x );
78-
* // returns <ndarray>[ 1.25]
78+
* // returns <ndarray>[ 1.25 ]
7979
*/
8080
<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`.
8181

0 commit comments

Comments
 (0)