diff --git a/lib/node_modules/@stdlib/assert/is-numeric-array/README.md b/lib/node_modules/@stdlib/assert/is-numeric-array/README.md
index e4f64856bfa8..17765195d932 100644
--- a/lib/node_modules/@stdlib/assert/is-numeric-array/README.md
+++ b/lib/node_modules/@stdlib/assert/is-numeric-array/README.md
@@ -141,7 +141,7 @@ bool = isNumericArray( new Buffer( 10 ) );
- [`@stdlib/assert/is-array`][@stdlib/assert/is-array]: test if a value is an array.
- [`@stdlib/assert/is-number-array`][@stdlib/assert/is-number-array]: test if a value is an array-like object of numbers.
-- [`@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/array/beta/README.md b/lib/node_modules/@stdlib/random/array/beta/README.md
index 5e0d4a783370..5a69f53d8cda 100644
--- a/lib/node_modules/@stdlib/random/array/beta/README.md
+++ b/lib/node_modules/@stdlib/random/array/beta/README.md
@@ -358,6 +358,7 @@ logEach( '%f', x4 );
## See Also
+- [`@stdlib/random/beta`][@stdlib/random/beta]: generate pseudorandom numbers drawn from a beta distribution.
- [`@stdlib/random/base/beta`][@stdlib/random/base/beta]: beta distributed pseudorandom numbers.
- [`@stdlib/random/strided/beta`][@stdlib/random/strided/beta]: fill a strided array with pseudorandom numbers drawn from a beta distribution.
@@ -379,6 +380,8 @@ logEach( '%f', x4 );
+[@stdlib/random/beta]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/beta
+
[@stdlib/random/strided/beta]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/strided/beta
diff --git a/lib/node_modules/@stdlib/random/array/chi/README.md b/lib/node_modules/@stdlib/random/array/chi/README.md
index 1ba02600c153..67454e138a7e 100644
--- a/lib/node_modules/@stdlib/random/array/chi/README.md
+++ b/lib/node_modules/@stdlib/random/array/chi/README.md
@@ -356,6 +356,7 @@ logEach( '%f', x4 );
## See Also
+- [`@stdlib/random/chi`][@stdlib/random/chi]: generate pseudorandom numbers drawn from a chi distribution.
- [`@stdlib/random/base/chi`][@stdlib/random/base/chi]: Chi distributed pseudorandom numbers.
- [`@stdlib/random/strided/chi`][@stdlib/random/strided/chi]: fill a strided array with pseudorandom numbers drawn from a chi distribution.
@@ -377,6 +378,8 @@ logEach( '%f', x4 );
+[@stdlib/random/chi]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/chi
+
[@stdlib/random/strided/chi]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/strided/chi
diff --git a/lib/node_modules/@stdlib/random/base/hypergeometric/README.md b/lib/node_modules/@stdlib/random/base/hypergeometric/README.md
index ca3626048740..671e8e7a6e22 100644
--- a/lib/node_modules/@stdlib/random/base/hypergeometric/README.md
+++ b/lib/node_modules/@stdlib/random/base/hypergeometric/README.md
@@ -430,6 +430,7 @@ for ( i = 0; i < 100; i++ ) {
- [`@stdlib/random/array/hypergeometric`][@stdlib/random/array/hypergeometric]: create an array containing pseudorandom numbers drawn from a hypergeometric distribution.
- [`@stdlib/random/iter/hypergeometric`][@stdlib/random/iter/hypergeometric]: create an iterator for generating pseudorandom numbers drawn from a hypergeometric distribution.
- [`@stdlib/random/streams/hypergeometric`][@stdlib/random/streams/hypergeometric]: create a readable stream for generating pseudorandom numbers drawn from a hypergeometric distribution.
+- [`@stdlib/random/hypergeometric`][@stdlib/random/hypergeometric]: generate pseudorandom numbers drawn from a hypergeometric distribution.
@@ -453,6 +454,8 @@ for ( i = 0; i < 100; i++ ) {
[@stdlib/random/streams/hypergeometric]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/streams/hypergeometric
+[@stdlib/random/hypergeometric]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/hypergeometric
+
diff --git a/lib/node_modules/@stdlib/random/base/levy/README.md b/lib/node_modules/@stdlib/random/base/levy/README.md
index 0e4b323f4165..a929e23cb016 100644
--- a/lib/node_modules/@stdlib/random/base/levy/README.md
+++ b/lib/node_modules/@stdlib/random/base/levy/README.md
@@ -408,6 +408,7 @@ for ( i = 0; i < 100; i++ ) {
- [`@stdlib/random/array/levy`][@stdlib/random/array/levy]: create an array containing pseudorandom numbers drawn from a Lévy distribution.
- [`@stdlib/random/iter/levy`][@stdlib/random/iter/levy]: create an iterator for generating pseudorandom numbers drawn from a Lévy distribution.
- [`@stdlib/random/streams/levy`][@stdlib/random/streams/levy]: create a readable stream for generating pseudorandom numbers drawn from a Lévy distribution.
+- [`@stdlib/random/levy`][@stdlib/random/levy]: generate pseudorandom numbers drawn from a Lévy distribution.
@@ -429,6 +430,8 @@ for ( i = 0; i < 100; i++ ) {
[@stdlib/random/streams/levy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/streams/levy
+[@stdlib/random/levy]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/levy
+
diff --git a/lib/node_modules/@stdlib/random/uniform/README.md b/lib/node_modules/@stdlib/random/uniform/README.md
index 55c4ece4d86f..dad9606e7c4a 100644
--- a/lib/node_modules/@stdlib/random/uniform/README.md
+++ b/lib/node_modules/@stdlib/random/uniform/README.md
@@ -363,6 +363,15 @@ logEach( '%f, %f, %f', arr[ 0 ], arr[ 1 ], arr[ 2 ] );
@@ -383,6 +392,16 @@ logEach( '%f, %f, %f', arr[ 0 ], arr[ 1 ], arr[ 2 ] );
[@stdlib/ndarray/base/broadcast-shapes]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/base/broadcast-shapes
+
+
+[@stdlib/random/discrete-uniform]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/discrete-uniform
+
+[@stdlib/random/array/uniform]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/array/uniform
+
+[@stdlib/random/strided/uniform]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/strided/uniform
+
+
+