Skip to content

Commit 92b9956

Browse files
authored
chore: fix EditorConfig lint errors
PR-URL: #6939 Closes: #6933 Reviewed-by: Athan Reines <[email protected]>
1 parent c207ec0 commit 92b9956

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

lib/node_modules/@stdlib/ndarray/fancy/examples/set_slice.3d.js

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -60,18 +60,18 @@ var s = E( 1, S(0,_,2), _ );
6060
y[ s ] = 100;
6161
console.log( toArray( y ) );
6262
/* =>
63-
[
64-
[
65-
[ 3, 4 ],
66-
[ 5, 6 ],
67-
[ 7, 8 ]
68-
],
69-
[
70-
[ 100, 100 ],
71-
[ 11, 12 ],
72-
[ 100, 100 ]
73-
]
74-
]
63+
[
64+
[
65+
[ 3, 4 ],
66+
[ 5, 6 ],
67+
[ 7, 8 ]
68+
],
69+
[
70+
[ 100, 100 ],
71+
[ 11, 12 ],
72+
[ 100, 100 ]
73+
]
74+
]
7575
*/
7676

7777
// Create a vector of zeros:
@@ -82,16 +82,16 @@ var x = ndzeros( [ 2 ] );
8282
y[ '0,:,:' ] = x;
8383
console.log( toArray( y ) );
8484
/* =>
85-
[
86-
[
87-
[ 0, 0 ],
88-
[ 0, 0 ],
89-
[ 0, 0 ]
90-
],
91-
[
92-
[ 100, 100 ],
93-
[ 11, 12 ],
94-
[ 100, 100 ]
95-
]
96-
]
85+
[
86+
[
87+
[ 0, 0 ],
88+
[ 0, 0 ],
89+
[ 0, 0 ]
90+
],
91+
[
92+
[ 100, 100 ],
93+
[ 11, 12 ],
94+
[ 100, 100 ]
95+
]
96+
]
9797
*/

0 commit comments

Comments
 (0)