Skip to content

Commit 6df9914

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

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • lib/node_modules/@stdlib/stats/maxsorted

lib/node_modules/@stdlib/stats/maxsorted/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ var x = array( [ 1.0, 2.0, 3.0, 4.0 ], {
6363
'shape': [ 2, 2 ],
6464
'order': 'row-major'
6565
});
66-
// returns <ndarray>
66+
// returns <ndarray>[ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ]
6767

6868
var y = maxsorted( x, {
6969
'dims': [ 0 ]
@@ -90,7 +90,7 @@ var x = array( [ 1.0, 2.0, 3.0, 4.0 ], {
9090
'shape': [ 2, 2 ],
9191
'order': 'row-major'
9292
});
93-
// returns <ndarray>
93+
// returns <ndarray>[ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ]
9494

9595
var y = maxsorted( x, {
9696
'dims': [ 0 ],

0 commit comments

Comments
 (0)