Skip to content

Commit c12971b

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

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/node_modules/@stdlib/ndarray/base/diagonal/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ var diagonal = require( '@stdlib/ndarray/base/diagonal' );
122122
var x = uniform( [ 2, 3, 3 ], -10.0, 10.0, {
123123
'dtype': 'float64'
124124
});
125-
console.log( 'X: ', ndarray2array( x ) );
125+
console.log( ndarray2array( x ) );
126126

127127
// Extract the main diagonals of the stack:
128128
var y = diagonal( x, [ 1, 2 ], 0, false );

lib/node_modules/@stdlib/ndarray/base/diagonal/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var diagonal = require( './../lib' );
2626
var x = uniform( [ 2, 3, 3 ], -10.0, 10.0, {
2727
'dtype': 'float64'
2828
});
29-
console.log( 'X: ', ndarray2array( x ) );
29+
console.log( ndarray2array( x ) );
3030

3131
// Extract the main diagonals of the stack:
3232
var y = diagonal( x, [ 1, 2 ], 0, false );

0 commit comments

Comments
 (0)