From e837c9b124bac62e99ede5786bc2be71b5d31fc6 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 6 May 2026 00:22:15 +0000 Subject: [PATCH] docs: align JS API subheadings to H4 in `stats/strided/dnanrangeabs` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Demote the `### dnanrangeabs( … )` and `### dnanrangeabs.ndarray( … )` JS-API subheadings nested under `## Usage` to `####`, matching the heading level used by 238/239 (99.6%) sibling packages in `stats/strided`. The H3 levels in the JS Usage block were inconsistent with the convention applied uniformly across the namespace. --- lib/node_modules/@stdlib/stats/strided/dnanrangeabs/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/stats/strided/dnanrangeabs/README.md b/lib/node_modules/@stdlib/stats/strided/dnanrangeabs/README.md index a68c10b5eac4..74359e3d47c2 100644 --- a/lib/node_modules/@stdlib/stats/strided/dnanrangeabs/README.md +++ b/lib/node_modules/@stdlib/stats/strided/dnanrangeabs/README.md @@ -38,7 +38,7 @@ The [**range**][range] is defined as the difference between the maximum and mini var dnanrangeabs = require( '@stdlib/stats/strided/dnanrangeabs' ); ``` -### dnanrangeabs( N, x, strideX ) +#### dnanrangeabs( N, x, strideX ) Computes the [range][range] of absolute values of a double-precision floating-point strided array, ignoring `NaN` values. @@ -82,7 +82,7 @@ var v = dnanrangeabs( 4, x1, 2 ); // returns 3.0 ``` -### dnanrangeabs.ndarray( N, x, strideX, offsetX ) +#### dnanrangeabs.ndarray( N, x, strideX, offsetX ) Computes the [range][range] of absolute values of a double-precision floating-point strided array, ignoring `NaN` values and using alternative indexing semantics.