Skip to content

Commit f2a27d4

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <kgryte@gmail.com>
1 parent c8e60cd commit f2a27d4

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
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 = mean( x );
119-
* // returns <ndarray>[ 1.25]
119+
* // returns <ndarray>[ 1.25 ]
120120
*
121121
* @example
122122
* var array = require( '@stdlib/ndarray/array' );

lib/node_modules/@stdlib/stats/mean/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 = mean( x );
48-
* // returns <ndarray>[ 6.5]
48+
* // returns <ndarray>[ 6.5 ]
4949
*/
5050

5151
// MODULES //

lib/node_modules/@stdlib/stats/mean/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 = mean( x );
91-
* // returns <ndarray>[ 6.5]
91+
* // returns <ndarray>[ 6.5 ]
9292
*/
9393
var mean = factory( table, [ idtypes ], odtypes, policies );
9494

0 commit comments

Comments
 (0)