Skip to content

Commit 72fac8d

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent 35a4b17 commit 72fac8d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ interface Unary {
116116
* var x = array( [ 1.0, 2.0, -2.0, 4.0 ] );
117117
*
118118
* var y = meankbn2( x );
119-
* // returns <ndarray>[ 1.25]
119+
* // returns <ndarray>[ 1.25 ]
120120
*
121121
* @example
122122
* var array = require( '@stdlib/ndarray/array' );
@@ -126,7 +126,7 @@ interface Unary {
126126
* var y = zeros( [] );
127127
*
128128
* var out = meankbn2.assign( x, y );
129-
* // returns <ndarray>[ 1.25]
129+
* // returns <ndarray>[ 1.25 ]
130130
*
131131
* var bool = ( out === y );
132132
* // returns true

lib/node_modules/@stdlib/stats/meankbn2/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
*
4646
* // Perform reduction:
4747
* var out = meankbn2( x );
48-
* // returns <ndarray>[ 6.5]
48+
* // returns <ndarray>[ 6.5 ]
4949
*/
5050

5151
// MODULES //

lib/node_modules/@stdlib/stats/meankbn2/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ var table = {
8888
*
8989
* // Perform reduction:
9090
* var out = meankbn2( x );
91-
* // returns <ndarray>[ 6.5]
91+
* // returns <ndarray>[ 6.5 ]
9292
*/
9393
var meankbn2 = factory( table, [ idtypes ], odtypes, policies );
9494

0 commit comments

Comments
 (0)