diff --git a/lib/node_modules/@stdlib/assert/is-dataview/README.md b/lib/node_modules/@stdlib/assert/is-dataview/README.md
index 7e452c27c8c5..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 ) );
@@ -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