diff --git a/lib/node_modules/@stdlib/stats/base/README.md b/lib/node_modules/@stdlib/stats/base/README.md
index 068869df4120..6fb98ba270b2 100644
--- a/lib/node_modules/@stdlib/stats/base/README.md
+++ b/lib/node_modules/@stdlib/stats/base/README.md
@@ -117,7 +117,7 @@ The namespace contains the following statistical functions:
- [`dstdevyc( N, correction, x, strideX )`][@stdlib/stats/base/dstdevyc]: calculate the standard deviation of a double-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer.
- [`dsvariance( N, correction, x, stride )`][@stdlib/stats/base/dsvariance]: calculate the variance of a single-precision floating-point strided array using extended accumulation and returning an extended precision result.
- [`dsvariancepn( N, correction, x, stride )`][@stdlib/stats/base/dsvariancepn]: calculate the variance of a single-precision floating-point strided array using a two-pass algorithm with extended accumulation and returning an extended precision result.
-- [`dvariance( N, correction, x, stride )`][@stdlib/stats/base/dvariance]: calculate the variance of a double-precision floating-point strided array.
+- [`dvariance( N, correction, x, strideX )`][@stdlib/stats/base/dvariance]: calculate the variance of a double-precision floating-point strided array.
- [`dvariancech( N, correction, x, strideX )`][@stdlib/stats/base/dvariancech]: calculate the variance of a double-precision floating-point strided array using a one-pass trial mean algorithm.
- [`dvariancepn( N, correction, x, strideX )`][@stdlib/stats/base/dvariancepn]: calculate the variance of a double-precision floating-point strided array using a two-pass algorithm.
- [`dvariancetk( N, correction, x, strideX )`][@stdlib/stats/base/dvariancetk]: calculate the variance of a double-precision floating-point strided array using a one-pass textbook algorithm.