File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 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
10941094
10951095<details>
10961096
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)_
10971098- [`fd622e8`](https://github.com/stdlib-js/stdlib/commit/fd622e8948ffdf6a9a8d2809ed789a1fac20a79f) - **docs:** update examples _(by Athan Reines)_
10981099- [`55f8f64`](https://github.com/stdlib-js/stdlib/commit/55f8f640e1001e7189b85406482b748ae7bc6a50) - **docs:** update examples _(by Athan Reines)_
10991100- [`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 {
33653365 *
33663366 * @example
33673367 * var x = [ 1, 2, 3, 4 ];
3368- * var idx = [ 5, 6, 7, 8 ];
3368+ * var y = [ 5, 6, 7, 8 ];
33693369 * var mask = [ 0, 1, 0, 1 ];
33703370 *
3371- * var out = ns.mskfilter2( x, idx , mask );
3371+ * var out = ns.mskfilter2( x, y , mask );
33723372 * // returns [ [ 2, 4 ], [ 6, 8 ] ]
33733373 */
33743374 mskfilter2 : typeof mskfilter2 ;
You can’t perform that action at this time.
0 commit comments