File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -1094,6 +1094,7 @@ A total of 12 people contributed to this release. Thank you to the following con
1094
1094
1095
1095
<details>
1096
1096
1097
+ - [`1024672`](https://github.com/stdlib-js/stdlib/commit/10246726f20f36d6322d74160e6f4d54805b02e4) - **docs:** update namespace TypeScript declaration comments [(#4729)](https://github.com/stdlib-js/stdlib/pull/4729) _(by stdlib-bot)_
1097
1098
- [`fd622e8`](https://github.com/stdlib-js/stdlib/commit/fd622e8948ffdf6a9a8d2809ed789a1fac20a79f) - **docs:** update examples _(by Athan Reines)_
1098
1099
- [`55f8f64`](https://github.com/stdlib-js/stdlib/commit/55f8f640e1001e7189b85406482b748ae7bc6a50) - **docs:** update examples _(by Athan Reines)_
1099
1100
- [`d9f8189`](https://github.com/stdlib-js/stdlib/commit/d9f8189f537a107f8247d2071bac26926ad60ca2) - **chore:** fix indentation _(by Philipp Burckhardt)_
Original file line number Diff line number Diff line change @@ -3365,10 +3365,10 @@ interface Namespace {
3365
3365
*
3366
3366
* @example
3367
3367
* var x = [ 1, 2, 3, 4 ];
3368
- * var idx = [ 5, 6, 7, 8 ];
3368
+ * var y = [ 5, 6, 7, 8 ];
3369
3369
* var mask = [ 0, 1, 0, 1 ];
3370
3370
*
3371
- * var out = ns.mskfilter2( x, idx , mask );
3371
+ * var out = ns.mskfilter2( x, y , mask );
3372
3372
* // returns [ [ 2, 4 ], [ 6, 8 ] ]
3373
3373
*/
3374
3374
mskfilter2 : typeof mskfilter2 ;
You can’t perform that action at this time.
0 commit comments