Skip to content

Commit 04a85e4

Browse files
committed
chore: fix EditorConfig lint errors (issue #11326)
1 parent 2840211 commit 04a85e4

File tree

2 files changed

+25
-25
lines changed

2 files changed

+25
-25
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"name": "beep
2+
"name": "beep
33
}

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

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -65,18 +65,18 @@ var s = E( 1, S(0,_,2), _ );
6565
y[ s ] = 100;
6666
console.log( toArray( y ) );
6767
/* =>
68-
[
69-
[
70-
[ 3, 4 ],
71-
[ 5, 6 ],
72-
[ 7, 8 ]
73-
],
74-
[
75-
[ 100, 100 ],
76-
[ 11, 12 ],
77-
[ 100, 100 ]
78-
]
79-
]
68+
[
69+
[
70+
[ 3, 4 ],
71+
[ 5, 6 ],
72+
[ 7, 8 ]
73+
],
74+
[
75+
[ 100, 100 ],
76+
[ 11, 12 ],
77+
[ 100, 100 ]
78+
]
79+
]
8080
*/
8181

8282
// Create a vector of zeros:
@@ -87,16 +87,16 @@ var z = ndzeros( [ 2 ] );
8787
y[ '0,:,:' ] = z;
8888
console.log( toArray( y ) );
8989
/* =>
90-
[
91-
[
92-
[ 0, 0 ],
93-
[ 0, 0 ],
94-
[ 0, 0 ]
95-
],
96-
[
97-
[ 100, 100 ],
98-
[ 11, 12 ],
99-
[ 100, 100 ]
100-
]
101-
]
90+
[
91+
[
92+
[ 0, 0 ],
93+
[ 0, 0 ],
94+
[ 0, 0 ]
95+
],
96+
[
97+
[ 100, 100 ],
98+
[ 11, 12 ],
99+
[ 100, 100 ]
100+
]
101+
]
102102
*/

0 commit comments

Comments
 (0)