diff --git a/lib/node_modules/@stdlib/lapack/README.md b/lib/node_modules/@stdlib/lapack/README.md
index d970a12a7324..1088f87c9fed 100644
--- a/lib/node_modules/@stdlib/lapack/README.md
+++ b/lib/node_modules/@stdlib/lapack/README.md
@@ -43,6 +43,12 @@ The namespace contains the following:
+
+
+- [`base`][@stdlib/lapack/base]: base (i.e., lower-level) linear algebra package (LAPACK) routines.
+
+
+
@@ -80,6 +86,12 @@ console.log( objectKeys( lapack ) );
+
+
+[@stdlib/lapack/base]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/lapack/base
+
+
+
diff --git a/lib/node_modules/@stdlib/lapack/base/README.md b/lib/node_modules/@stdlib/lapack/base/README.md
index 8cf757f29326..788b51977982 100644
--- a/lib/node_modules/@stdlib/lapack/base/README.md
+++ b/lib/node_modules/@stdlib/lapack/base/README.md
@@ -43,6 +43,12 @@ The namespace contains the following:
+
+
+- [`dlaswp( N, A, LDA, k1, k2, IPIV, incx )`][@stdlib/lapack/base/dlaswp]: perform a series of row interchanges on an input matrix.
+
+
+
@@ -80,6 +86,12 @@ console.log( objectKeys( lapack ) );
+
+
+[@stdlib/lapack/base/dlaswp]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/lapack/base/dlaswp
+
+
+
diff --git a/lib/node_modules/@stdlib/ndarray/base/README.md b/lib/node_modules/@stdlib/ndarray/base/README.md
index 29bb31323798..13b17f9dba91 100644
--- a/lib/node_modules/@stdlib/ndarray/base/README.md
+++ b/lib/node_modules/@stdlib/ndarray/base/README.md
@@ -54,7 +54,7 @@ var o = ns;
- [`bufferCtors( dtype )`][@stdlib/ndarray/base/buffer-ctors]: ndarray data buffer constructors.
- [`bufferDataTypeEnum( buffer )`][@stdlib/ndarray/base/buffer-dtype-enum]: return the data type enumeration constant of an ndarray data buffer.
- [`bufferDataType( buffer )`][@stdlib/ndarray/base/buffer-dtype]: return the data type of an ndarray data buffer.
-- [`buffer( dtype, size )`][@stdlib/ndarray/base/buffer]: create a zero-filled contiguous linear ndarray data buffer.
+- [`buffer( dtype, size )`][@stdlib/ndarray/base/buffer]: create a contiguous linear ndarray data buffer.
- [`bytesPerElement( dtype )`][@stdlib/ndarray/base/bytes-per-element]: return the number of bytes per element provided an underlying array data type.
- [`char2dtype( [ch] )`][@stdlib/ndarray/base/char2dtype]: return the data type string associated with a provided single letter character abbreviation.
- [`clampIndex( idx, max )`][@stdlib/ndarray/base/clamp-index]: restrict an index to the interval `[0,max]`.