diff --git a/lib/node_modules/@stdlib/ndarray/fancy/examples/set_slice.3d.js b/lib/node_modules/@stdlib/ndarray/fancy/examples/set_slice.3d.js index e5d0a5e01b7e..e7123cd39e3b 100644 --- a/lib/node_modules/@stdlib/ndarray/fancy/examples/set_slice.3d.js +++ b/lib/node_modules/@stdlib/ndarray/fancy/examples/set_slice.3d.js @@ -60,18 +60,18 @@ var s = E( 1, S(0,_,2), _ ); y[ s ] = 100; console.log( toArray( y ) ); /* => - [ - [ - [ 3, 4 ], - [ 5, 6 ], - [ 7, 8 ] - ], - [ - [ 100, 100 ], - [ 11, 12 ], - [ 100, 100 ] - ] - ] + [ + [ + [ 3, 4 ], + [ 5, 6 ], + [ 7, 8 ] + ], + [ + [ 100, 100 ], + [ 11, 12 ], + [ 100, 100 ] + ] + ] */ // Create a vector of zeros: @@ -82,16 +82,16 @@ var x = ndzeros( [ 2 ] ); y[ '0,:,:' ] = x; console.log( toArray( y ) ); /* => - [ - [ - [ 0, 0 ], - [ 0, 0 ], - [ 0, 0 ] - ], - [ - [ 100, 100 ], - [ 11, 12 ], - [ 100, 100 ] - ] - ] + [ + [ + [ 0, 0 ], + [ 0, 0 ], + [ 0, 0 ] + ], + [ + [ 100, 100 ], + [ 11, 12 ], + [ 100, 100 ] + ] + ] */