diff --git a/lib/node_modules/@stdlib/stats/base/dmaxabssorted/README.md b/lib/node_modules/@stdlib/stats/base/dmaxabssorted/README.md index fcbe6eedca81..340a504a0d61 100644 --- a/lib/node_modules/@stdlib/stats/base/dmaxabssorted/README.md +++ b/lib/node_modules/@stdlib/stats/base/dmaxabssorted/README.md @@ -99,7 +99,7 @@ The function has the following additional parameters: - **offsetX**: starting index for `x`. -While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying buffer, the offset parameter supports indexing semantics based on a starting index. For example, to calculate the maximum absolute value for every other value in `x` starting from the second value +While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying buffer, the offset parameter supports indexing semantics based on a starting index. For example, to calculate the maximum absolute value for every other element in `x` starting from the second element ```javascript var Float64Array = require( '@stdlib/array/float64' ); diff --git a/lib/node_modules/@stdlib/stats/base/dmaxabssorted/docs/repl.txt b/lib/node_modules/@stdlib/stats/base/dmaxabssorted/docs/repl.txt index 3e4268d07fc4..9682affaa15a 100644 --- a/lib/node_modules/@stdlib/stats/base/dmaxabssorted/docs/repl.txt +++ b/lib/node_modules/@stdlib/stats/base/dmaxabssorted/docs/repl.txt @@ -23,7 +23,7 @@ Sorted input array. strideX: integer - Index increment. + Stride Length. Returns ------- @@ -66,7 +66,7 @@ Sorted input array. strideX: integer - Index increment. + Stride Length. offsetX: integer Starting index.