Skip to content

Commit e837c9b

Browse files
committed
docs: align JS API subheadings to H4 in stats/strided/dnanrangeabs
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.
1 parent 03405cc commit e837c9b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • lib/node_modules/@stdlib/stats/strided/dnanrangeabs

lib/node_modules/@stdlib/stats/strided/dnanrangeabs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The [**range**][range] is defined as the difference between the maximum and mini
3838
var dnanrangeabs = require( '@stdlib/stats/strided/dnanrangeabs' );
3939
```
4040

41-
### dnanrangeabs( N, x, strideX )
41+
#### dnanrangeabs( N, x, strideX )
4242

4343
Computes the [range][range] of absolute values of a double-precision floating-point strided array, ignoring `NaN` values.
4444

@@ -82,7 +82,7 @@ var v = dnanrangeabs( 4, x1, 2 );
8282
// returns 3.0
8383
```
8484

85-
### dnanrangeabs.ndarray( N, x, strideX, offsetX )
85+
#### dnanrangeabs.ndarray( N, x, strideX, offsetX )
8686

8787
Computes the [range][range] of absolute values of a double-precision floating-point strided array, ignoring `NaN` values and using alternative indexing semantics.
8888

0 commit comments

Comments
 (0)