From 7f9ecd461dabb3b19a1ad81dfeedafc8b17d5d7f Mon Sep 17 00:00:00 2001 From: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> Date: Sat, 30 May 2026 03:02:33 +0000 Subject: [PATCH 1/2] docs: update related packages sections --- lib/node_modules/@stdlib/assert/is-dataview/README.md | 2 +- lib/node_modules/@stdlib/random/strided/chisquare/README.md | 3 +++ lib/node_modules/@stdlib/random/strided/lognormal/README.md | 3 +++ lib/node_modules/@stdlib/random/strided/normal/README.md | 3 +++ 4 files changed, 10 insertions(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/assert/is-dataview/README.md b/lib/node_modules/@stdlib/assert/is-dataview/README.md index 7e452c27c8c5..ba1342e54092 100644 --- a/lib/node_modules/@stdlib/assert/is-dataview/README.md +++ b/lib/node_modules/@stdlib/assert/is-dataview/README.md @@ -125,7 +125,7 @@ bool = isDataView( null ); ## See Also - [`@stdlib/assert/is-arraybuffer`][@stdlib/assert/is-arraybuffer]: test if a value is an ArrayBuffer. -- [`@stdlib/assert/is-typed-array`][@stdlib/assert/is-typed-array]: test if a value is a typed array. +- [`@stdlib/assert/is-typed-array`][@stdlib/assert/is-typed-array]: test if a value is a built-in typed array. diff --git a/lib/node_modules/@stdlib/random/strided/chisquare/README.md b/lib/node_modules/@stdlib/random/strided/chisquare/README.md index 2b86d022c6b4..2ed8e642cbb2 100644 --- a/lib/node_modules/@stdlib/random/strided/chisquare/README.md +++ b/lib/node_modules/@stdlib/random/strided/chisquare/README.md @@ -360,6 +360,7 @@ logEach( 'x1[%d] = %.2f; x2[%d] = %.2f', idx, x1, idx, x2 ); ## See Also +- [`@stdlib/random/chisquare`][@stdlib/random/chisquare]: generate pseudorandom numbers drawn from a chi-square distribution. - [`@stdlib/random/base/chisquare`][@stdlib/random/base/chisquare]: Chi-square distributed pseudorandom numbers. - [`@stdlib/random/array/chisquare`][@stdlib/random/array/chisquare]: create an array containing pseudorandom numbers drawn from a chi-square distribution. @@ -379,6 +380,8 @@ logEach( 'x1[%d] = %.2f; x2[%d] = %.2f', idx, x1, idx, x2 ); +[@stdlib/random/chisquare]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/chisquare + [@stdlib/random/array/chisquare]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/array/chisquare diff --git a/lib/node_modules/@stdlib/random/strided/lognormal/README.md b/lib/node_modules/@stdlib/random/strided/lognormal/README.md index 8bff3bcb7fd1..3176c512456b 100644 --- a/lib/node_modules/@stdlib/random/strided/lognormal/README.md +++ b/lib/node_modules/@stdlib/random/strided/lognormal/README.md @@ -211,6 +211,7 @@ logEach( 'x1[%d] = %.2f; x2[%d] = %.2f', idx, x1, idx, x2 ); ## See Also +- [`@stdlib/random/lognormal`][@stdlib/random/lognormal]: generate pseudorandom numbers drawn from a lognormal distribution. - [`@stdlib/random/base/lognormal`][@stdlib/random/base/lognormal]: log-normally distributed pseudorandom numbers. - [`@stdlib/random/array/lognormal`][@stdlib/random/array/lognormal]: create an array containing pseudorandom numbers drawn from a lognormal distribution. @@ -230,6 +231,8 @@ logEach( 'x1[%d] = %.2f; x2[%d] = %.2f', idx, x1, idx, x2 ); +[@stdlib/random/lognormal]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/lognormal + [@stdlib/random/array/lognormal]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/array/lognormal diff --git a/lib/node_modules/@stdlib/random/strided/normal/README.md b/lib/node_modules/@stdlib/random/strided/normal/README.md index 43d963d1fc29..1c8169876523 100644 --- a/lib/node_modules/@stdlib/random/strided/normal/README.md +++ b/lib/node_modules/@stdlib/random/strided/normal/README.md @@ -211,6 +211,7 @@ logEach( 'x1[%d] = %.2f; x2[%d] = %.2f', idx, x1, idx, x2 ); ## See Also +- [`@stdlib/random/normal`][@stdlib/random/normal]: generate pseudorandom numbers drawn from a normal distribution. - [`@stdlib/random/base/normal`][@stdlib/random/base/normal]: normally distributed pseudorandom numbers. - [`@stdlib/random/array/normal`][@stdlib/random/array/normal]: create an array containing pseudorandom numbers drawn from a normal distribution. @@ -230,6 +231,8 @@ logEach( 'x1[%d] = %.2f; x2[%d] = %.2f', idx, x1, idx, x2 ); +[@stdlib/random/normal]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/normal + [@stdlib/random/array/normal]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/array/normal From 9c5037fa9b91d88615aacc620633b23dfb1cc87b Mon Sep 17 00:00:00 2001 From: Athan Date: Sat, 30 May 2026 03:13:47 -0700 Subject: [PATCH 2/2] Apply suggestions from code review Co-authored-by: Athan Signed-off-by: Athan --- lib/node_modules/@stdlib/assert/is-dataview/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/assert/is-dataview/README.md b/lib/node_modules/@stdlib/assert/is-dataview/README.md index ba1342e54092..cacef3148376 100644 --- a/lib/node_modules/@stdlib/assert/is-dataview/README.md +++ b/lib/node_modules/@stdlib/assert/is-dataview/README.md @@ -99,7 +99,7 @@ bool = isDataView( new Uint32Array( 10 ) ); bool = isDataView( new Float64Array( 10 ) ); // returns false -bool = isDataView( new Array( 10 ) ); +bool = isDataView( [ 0, 0, 0, 0 ] ); // returns false bool = isDataView( new ArrayBuffer( 10 ) );