diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e13017b..8f6f8304 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1902,6 +1902,8 @@ A total of 13 people contributed to this release. Thank you to the following con
+- [`915d3e7`](https://github.com/stdlib-js/stdlib/commit/915d3e77ccd6bdb8a8145e5be832e0db50854613) - **docs:** fix missing asterisk _(by Athan Reines)_ +- [`6adfd9a`](https://github.com/stdlib-js/stdlib/commit/6adfd9a5b8df1771ac41681f1167c480e8d89c1d) - **docs:** fix missing asterisk _(by Athan Reines)_ - [`c0a9532`](https://github.com/stdlib-js/stdlib/commit/c0a953262445a079c4ee610fcaa94108b7bbcc77) - **feat:** add boolean dtype support in `array/to-json` [(#2392)](https://github.com/stdlib-js/stdlib/pull/2392) _(by Jaysukh Makvana)_ - [`8f4b5c4`](https://github.com/stdlib-js/stdlib/commit/8f4b5c410ffb5d06bb5cce02b84c5f7043c31fa7) - **feat:** add boolean dtype support to `array/typed-ctors` [(#2391)](https://github.com/stdlib-js/stdlib/pull/2391) _(by Jaysukh Makvana, Athan Reines)_ - [`717af94`](https://github.com/stdlib-js/stdlib/commit/717af947ab270abc5422b6d8af7dacd8f0078ca4) - **docs:** update namespace table of contents [(##2389)](#2389) _(by stdlib-bot, Philipp Burckhardt)_ diff --git a/base/cuany/docs/types/index.d.ts b/base/cuany/docs/types/index.d.ts index 36f51d80..1522478d 100644 --- a/base/cuany/docs/types/index.d.ts +++ b/base/cuany/docs/types/index.d.ts @@ -74,7 +74,7 @@ interface CuAny { * @example * var x = [ false, false, true, false, false ]; * var y = [ false, null, false, null, false, null, false, null, false, null ]; - +* * var arr = cuany.assign( x, y, 2, 0 ); * // returns [ false, null, false, null, true, null, true, null, true, null ] */ diff --git a/base/cuevery/docs/types/index.d.ts b/base/cuevery/docs/types/index.d.ts index 8d8a7046..fbd78370 100644 --- a/base/cuevery/docs/types/index.d.ts +++ b/base/cuevery/docs/types/index.d.ts @@ -74,7 +74,7 @@ interface CuEvery { * @example * var x = [ true, true, true, false, true ]; * var y = [ false, null, false, null, false, null, false, null, false, null ]; - +* * var arr = cuevery.assign( x, y, 2, 0 ); * // returns [ true, null, true, null, true, null, false, null, false, null ]; */