diff --git a/lib/node_modules/@stdlib/array/base/banded/README.md b/lib/node_modules/@stdlib/array/base/banded/README.md
index 00dfe2cd4b6b..a9b087dfd7e5 100644
--- a/lib/node_modules/@stdlib/array/base/banded/README.md
+++ b/lib/node_modules/@stdlib/array/base/banded/README.md
@@ -53,6 +53,13 @@ The namespace exports the following:
+
+
+- [`filled2dBy( shape, ku, kl, fill, clbk[, thisArg] )`][@stdlib/array/base/banded/filled2d-by]: create a filled two-dimensional banded nested array according to a provided callback function.
+- [`toCompact( arr, ku, kl, colexicographic )`][@stdlib/array/base/banded/to-compact]: convert a two-dimensional banded nested array to compact banded storage.
+
+
+
@@ -100,6 +107,14 @@ console.log( objectKeys( ns ) );
+
+
+[@stdlib/array/base/banded/filled2d-by]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/banded/filled2d-by
+
+[@stdlib/array/base/banded/to-compact]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/banded/to-compact
+
+
+
diff --git a/lib/node_modules/@stdlib/array/base/symmetric-banded/README.md b/lib/node_modules/@stdlib/array/base/symmetric-banded/README.md
index 396c4734f3ae..820237c5ff0b 100644
--- a/lib/node_modules/@stdlib/array/base/symmetric-banded/README.md
+++ b/lib/node_modules/@stdlib/array/base/symmetric-banded/README.md
@@ -53,6 +53,13 @@ The namespace exports the following:
+
+
+- [`filled2dBy( N, k, fill, clbk[, thisArg] )`][@stdlib/array/base/symmetric-banded/filled2d-by]: create a filled two-dimensional symmetric banded nested array according to a provided callback function.
+- [`toCompact( uplo, arr, k, colexicographic )`][@stdlib/array/base/symmetric-banded/to-compact]: convert a two-dimensional symmetric banded nested array to compact banded storage.
+
+
+
@@ -100,6 +107,14 @@ console.log( objectKeys( ns ) );
+
+
+[@stdlib/array/base/symmetric-banded/filled2d-by]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/symmetric-banded/filled2d-by
+
+[@stdlib/array/base/symmetric-banded/to-compact]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/symmetric-banded/to-compact
+
+
+
diff --git a/lib/node_modules/@stdlib/array/base/symmetric/README.md b/lib/node_modules/@stdlib/array/base/symmetric/README.md
index 8658e9dcd102..ea3ebb93237d 100644
--- a/lib/node_modules/@stdlib/array/base/symmetric/README.md
+++ b/lib/node_modules/@stdlib/array/base/symmetric/README.md
@@ -53,6 +53,12 @@ The namespace exports the following:
+
+
+- [`filled2dBy( N, clbk[, thisArg] )`][@stdlib/array/base/symmetric/filled2d-by]: create a filled two-dimensional symmetric nested array according to a provided callback function.
+
+
+
@@ -100,6 +106,12 @@ console.log( objectKeys( ns ) );
+
+
+[@stdlib/array/base/symmetric/filled2d-by]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/symmetric/filled2d-by
+
+
+
diff --git a/lib/node_modules/@stdlib/math/base/special/README.md b/lib/node_modules/@stdlib/math/base/special/README.md
index bb446bff5f3a..b801d5119ddd 100644
--- a/lib/node_modules/@stdlib/math/base/special/README.md
+++ b/lib/node_modules/@stdlib/math/base/special/README.md
@@ -189,7 +189,7 @@ var fcns = special;
- [`round2( x )`][@stdlib/math/base/special/round2]: round a numeric value to the nearest power of two on a linear scale.
- [`roundb( x, n, b )`][@stdlib/math/base/special/roundb]: round a numeric value to the nearest multiple of b^n on a linear scale.
- [`roundn( x, n )`][@stdlib/math/base/special/roundn]: round a double-precision floating-point number to the nearest multiple of 10^n.
-- [`roundsd( x, n[, b] )`][@stdlib/math/base/special/roundsd]: round a numeric value to the nearest number with `n` significant figures.
+- [`roundsd( x, n[, b] )`][@stdlib/math/base/special/roundsd]: round a double-precision floating-point number to the nearest value with `n` significant figures.
- [`signum( x )`][@stdlib/math/base/special/signum]: signum function.
- [`signumf( x )`][@stdlib/math/base/special/signumf]: signum function.
- [`trunc( x )`][@stdlib/math/base/special/trunc]: round a double-precision floating-point number toward zero.