diff --git a/lib/node_modules/@stdlib/blas/base/README.md b/lib/node_modules/@stdlib/blas/base/README.md
index 4038f46a4ed9..4276b8027ceb 100644
--- a/lib/node_modules/@stdlib/blas/base/README.md
+++ b/lib/node_modules/@stdlib/blas/base/README.md
@@ -62,7 +62,7 @@ var o = blas;
- [`dscal( N, alpha, x, stride )`][@stdlib/blas/base/dscal]: multiply a double-precision floating-point vector `x` by a constant `alpha`.
- [`dsdot( N, x, strideX, y, strideY )`][@stdlib/blas/base/dsdot]: calculate the dot product with extended accumulation and result of two single-precision floating-point vectors.
- [`dswap( N, x, strideX, y, strideY )`][@stdlib/blas/base/dswap]: interchange two double-precision floating-point vectors.
-- [`dznrm2( N, zx, strideX )`][@stdlib/blas/base/dznrm2]: compute the L2-norm of a complex double-precision floating-point vector.
+- [`dznrm2( N, x, strideX )`][@stdlib/blas/base/dznrm2]: compute the L2-norm of a complex double-precision floating-point vector.
- [`gasum( N, x, stride )`][@stdlib/blas/base/gasum]: compute the sum of absolute values (_L1_ norm).
- [`gaxpy( N, alpha, x, strideX, y, strideY )`][@stdlib/blas/base/gaxpy]: multiply `x` by a constant `alpha` and add the result to `y`.
- [`gcopy( N, x, strideX, y, strideY )`][@stdlib/blas/base/gcopy]: copy values from `x` into `y`.
diff --git a/lib/node_modules/@stdlib/ndarray/README.md b/lib/node_modules/@stdlib/ndarray/README.md
index 7d4ca511844a..cf40389a718c 100644
--- a/lib/node_modules/@stdlib/ndarray/README.md
+++ b/lib/node_modules/@stdlib/ndarray/README.md
@@ -126,6 +126,7 @@ In addition, the namespace contains the following multidimensional array utility
- [`sliceFrom( x, ...start[, options] )`][@stdlib/ndarray/slice-from]: return a read-only shifted view of an input ndarray.
- [`sliceTo( x, ...stop[, options] )`][@stdlib/ndarray/slice-to]: return a read-only truncated view of an input ndarray.
- [`slice( x, ...s[, options] )`][@stdlib/ndarray/slice]: return a read-only view of an input `ndarray`.
+- [`someBy( x, n[, options], predicate[, thisArg] )`][@stdlib/ndarray/some-by]: test whether at least `n` elements along one or more `ndarray` dimensions pass a test implemented by a predicate function.
- [`stride( x, dim )`][@stdlib/ndarray/stride]: return the stride along a specified dimension for a provided ndarray.
- [`strides( x )`][@stdlib/ndarray/strides]: return the strides of a provided ndarray.
- [`sub2ind( shape, ...subscripts[, options] )`][@stdlib/ndarray/sub2ind]: convert subscripts to a linear index.
@@ -287,6 +288,8 @@ console.log( objectKeys( ns ) );
[@stdlib/ndarray/slice]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/slice
+[@stdlib/ndarray/some-by]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/some-by
+
[@stdlib/ndarray/stride]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/stride
[@stdlib/ndarray/strides]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/strides