diff --git a/CHANGELOG.md b/CHANGELOG.md index daf0f23b..dad96c65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@
-## Unreleased (2024-10-08) +## Unreleased (2024-10-12)
@@ -286,6 +286,7 @@ A total of 6 people contributed to this release. Thank you to the following cont
+- [`43e7a33`](https://github.com/stdlib-js/stdlib/commit/43e7a3386606e54475e872d24ddf11fa6c122c42) - **chore:** minor clean-up after code review _(by Philipp Burckhardt)_ - [`4927336`](https://github.com/stdlib-js/stdlib/commit/4927336d5b2b4a7d2baf0e7d854b406d309fac17) - **feat:** add `assert/is-same-typed-array-like` [(#2939)](https://github.com/stdlib-js/stdlib/pull/2939) _(by Aditya Sapra, Philipp Burckhardt)_ - [`abf0407`](https://github.com/stdlib-js/stdlib/commit/abf040787f6598438b0100a729a8331b7f80f62f) - **chore:** resolve lint errors in TS files _(by Philipp Burckhardt)_ - [`ff9fa81`](https://github.com/stdlib-js/stdlib/commit/ff9fa81f917d539f1a11fba5580e1744991a8a11) - **docs:** fix TSDoc lint errors _(by Philipp Burckhardt)_ diff --git a/CONTRIBUTORS b/CONTRIBUTORS index d74d10f3..f1b00f3f 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -28,6 +28,7 @@ EuniceSim142 <77243938+EuniceSim142@users.noreply.github.com> Frank Kovacs Golden Kumar <103646877+AuenKr@users.noreply.github.com> Gunj Joshi +Gururaj Gurram <143020143+gururaj1512@users.noreply.github.com> HarshaNP <96897754+GittyHarsha@users.noreply.github.com> Harshita Kalani Hridyanshu <124202756+HRIDYANSHU054@users.noreply.github.com> @@ -94,6 +95,7 @@ Tudor Pagu <104032457+tudor-pagu@users.noreply.github.com> Tufailahmed Bargir <142114244+Tufailahmed-Bargir@users.noreply.github.com> Utkarsh Utkarsh Raj +UtkershBasnet <119008923+UtkershBasnet@users.noreply.github.com> Vaibhav Patel <98279986+noobCoderVP@users.noreply.github.com> Varad Gupta Xiaochuan Ye diff --git a/is-same-typed-array-like/README.md b/is-same-typed-array-like/README.md index 66e9fb17..1416e13a 100644 --- a/is-same-typed-array-like/README.md +++ b/is-same-typed-array-like/README.md @@ -18,7 +18,7 @@ limitations under the License. --> -# isSameArrayLike +# isSameTypedArrayLike > Test if two arguments are both typed-array-like objects and have the [same values][@stdlib/assert/is-same-value]. diff --git a/is-same-typed-array-like/docs/types/index.d.ts b/is-same-typed-array-like/docs/types/index.d.ts index 2485bfd3..4d439e42 100644 --- a/is-same-typed-array-like/docs/types/index.d.ts +++ b/is-same-typed-array-like/docs/types/index.d.ts @@ -28,6 +28,7 @@ * @example * var Int8Array = require( '@stdlib/array/int8' ); * var Int16Array = require( '@stdlib/array/int16' ); +* * var x = new Int8Array( [ 1.0, 2.0, 3.0 ] ); * var y = new Int16Array( [ 1.0, 2.0, 3.0 ] ); * @@ -36,6 +37,7 @@ * * @example * var Int8Array = require( '@stdlib/array/int8' ); +* * var x = new Int8Array( [ 1.0, 2.0, 3.0 ] ); * var y = new Int8Array( [ 1.0, 2.0, 4.0 ] ); *