diff --git a/lib/node_modules/@stdlib/random/base/binomial/README.md b/lib/node_modules/@stdlib/random/base/binomial/README.md
index eecbdf85bcca..71fb34a8dda0 100644
--- a/lib/node_modules/@stdlib/random/base/binomial/README.md
+++ b/lib/node_modules/@stdlib/random/base/binomial/README.md
@@ -421,6 +421,14 @@ for ( i = 0; i < 100; i++ ) {
@@ -435,6 +443,16 @@ for ( i = 0; i < 100; i++ ) {
[@stdlib/array/uint32]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/uint32
+
+
+[@stdlib/random/array/binomial]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/array/binomial
+
+[@stdlib/random/iter/binomial]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/iter/binomial
+
+[@stdlib/random/streams/binomial]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/streams/binomial
+
+
+
diff --git a/lib/node_modules/@stdlib/random/base/invgamma/README.md b/lib/node_modules/@stdlib/random/base/invgamma/README.md
index d18dd2b440b3..b9573e44e064 100644
--- a/lib/node_modules/@stdlib/random/base/invgamma/README.md
+++ b/lib/node_modules/@stdlib/random/base/invgamma/README.md
@@ -408,6 +408,14 @@ for ( i = 0; i < 100; i++ ) {
@@ -420,6 +428,16 @@ for ( i = 0; i < 100; i++ ) {
[@stdlib/array/uint32]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/uint32
+
+
+[@stdlib/random/array/invgamma]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/array/invgamma
+
+[@stdlib/random/iter/invgamma]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/iter/invgamma
+
+[@stdlib/random/streams/invgamma]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/streams/invgamma
+
+
+
diff --git a/lib/node_modules/@stdlib/random/base/lognormal/README.md b/lib/node_modules/@stdlib/random/base/lognormal/README.md
index 1c171aaeeb80..4e75aed134d7 100644
--- a/lib/node_modules/@stdlib/random/base/lognormal/README.md
+++ b/lib/node_modules/@stdlib/random/base/lognormal/README.md
@@ -401,6 +401,14 @@ for ( i = 0; i < 100; i++ ) {
@@ -413,6 +421,16 @@ for ( i = 0; i < 100; i++ ) {
[@stdlib/array/uint32]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/uint32
+
+
+[@stdlib/random/array/lognormal]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/array/lognormal
+
+[@stdlib/random/iter/lognormal]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/iter/lognormal
+
+[@stdlib/random/streams/lognormal]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/streams/lognormal
+
+
+
diff --git a/lib/node_modules/@stdlib/random/base/normal/README.md b/lib/node_modules/@stdlib/random/base/normal/README.md
index bd96b92ec031..1d2871356920 100644
--- a/lib/node_modules/@stdlib/random/base/normal/README.md
+++ b/lib/node_modules/@stdlib/random/base/normal/README.md
@@ -402,6 +402,14 @@ for ( i = 0; i < 100; i++ ) {
@@ -414,6 +422,16 @@ for ( i = 0; i < 100; i++ ) {
[@stdlib/array/uint32]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/uint32
+
+
+[@stdlib/random/array/normal]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/array/normal
+
+[@stdlib/random/iter/normal]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/iter/normal
+
+[@stdlib/random/streams/normal]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/random/streams/normal
+
+
+
diff --git a/lib/node_modules/@stdlib/string/first/README.md b/lib/node_modules/@stdlib/string/first/README.md
index 4db9468a6a43..c9065788d0f9 100644
--- a/lib/node_modules/@stdlib/string/first/README.md
+++ b/lib/node_modules/@stdlib/string/first/README.md
@@ -49,7 +49,7 @@ The function supports the following options:
- `'grapheme'`: grapheme clusters. Appropriate for strings containing visual characters which can span multiple Unicode code points (e.g., emoji).
- `'code_point'`: Unicode code points. Appropriate for strings containing visual characters which are comprised of more than one Unicode code unit (e.g., ideographic symbols and punctuation and mathematical alphanumerics).
- `'code_unit'`: UTF-16 code units. Appropriate for strings containing visual characters drawn from the basic multilingual plane (BMP) (e.g., common characters, such as those from the Latin, Greek, and Cyrillic alphabets).
-
+
Default: `'grapheme'`.
By default, the function returns the first character. To return the first `n` characters, provide a second argument specifying the number of characters to return.
@@ -78,7 +78,6 @@ out = first( 'foo bar', 10 );
-
## Examples
@@ -199,6 +198,12 @@ b
@@ -211,6 +216,12 @@ b
[mdn-regexp]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions
+
+
+[@stdlib/string/remove-first]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/string/remove-first
+
+
+