Skip to content

Commit eb2c535

Browse files
committed
Auto-generated commit
1 parent fe3e26a commit eb2c535

File tree

2 files changed

+27
-26
lines changed

2 files changed

+27
-26
lines changed

CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -355,9 +355,9 @@
355355

356356
### Closed Issues
357357

358-
A total of 14 issues were closed in this release:
358+
A total of 15 issues were closed in this release:
359359

360-
[#5526](https://github.com/stdlib-js/stdlib/issues/5526), [#5788](https://github.com/stdlib-js/stdlib/issues/5788), [#5960](https://github.com/stdlib-js/stdlib/issues/5960), [#6053](https://github.com/stdlib-js/stdlib/issues/6053), [#6236](https://github.com/stdlib-js/stdlib/issues/6236), [#6456](https://github.com/stdlib-js/stdlib/issues/6456), [#6457](https://github.com/stdlib-js/stdlib/issues/6457), [#6473](https://github.com/stdlib-js/stdlib/issues/6473), [#6521](https://github.com/stdlib-js/stdlib/issues/6521), [#6574](https://github.com/stdlib-js/stdlib/issues/6574), [#6589](https://github.com/stdlib-js/stdlib/issues/6589), [#6604](https://github.com/stdlib-js/stdlib/issues/6604), [#6663](https://github.com/stdlib-js/stdlib/issues/6663), [#6776](https://github.com/stdlib-js/stdlib/issues/6776)
360+
[#5526](https://github.com/stdlib-js/stdlib/issues/5526), [#5788](https://github.com/stdlib-js/stdlib/issues/5788), [#5960](https://github.com/stdlib-js/stdlib/issues/5960), [#6053](https://github.com/stdlib-js/stdlib/issues/6053), [#6236](https://github.com/stdlib-js/stdlib/issues/6236), [#6456](https://github.com/stdlib-js/stdlib/issues/6456), [#6457](https://github.com/stdlib-js/stdlib/issues/6457), [#6473](https://github.com/stdlib-js/stdlib/issues/6473), [#6521](https://github.com/stdlib-js/stdlib/issues/6521), [#6574](https://github.com/stdlib-js/stdlib/issues/6574), [#6589](https://github.com/stdlib-js/stdlib/issues/6589), [#6604](https://github.com/stdlib-js/stdlib/issues/6604), [#6663](https://github.com/stdlib-js/stdlib/issues/6663), [#6776](https://github.com/stdlib-js/stdlib/issues/6776), [#6933](https://github.com/stdlib-js/stdlib/issues/6933)
361361

362362
</section>
363363

@@ -369,6 +369,7 @@ A total of 14 issues were closed in this release:
369369

370370
<details>
371371

372+
- [`92b9956`](https://github.com/stdlib-js/stdlib/commit/92b99565374d44d5456a36871bd19a957e33a986) - **chore:** fix EditorConfig lint errors [(#6939)](https://github.com/stdlib-js/stdlib/pull/6939) _(by zhanggy)_
372373
- [`3d355ab`](https://github.com/stdlib-js/stdlib/commit/3d355ab124de9c965171d08aebc8d14156fb9711) - **chore:** fix meta data _(by Athan Reines)_
373374
- [`79338a4`](https://github.com/stdlib-js/stdlib/commit/79338a45542acc87c31fb6ad7220b8ecab4c467d) - **chore:** update meta data _(by Athan Reines)_
374375
- [`f328b4f`](https://github.com/stdlib-js/stdlib/commit/f328b4f3b5bc69a79761c820e56c5849c7616dee) - **docs:** add README _(by Athan Reines)_

fancy/examples/set_slice.3d.js

+24-24
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)