Skip to content

Commit db0cfa9

Browse files
chore: max-len
1 parent a20dfba commit db0cfa9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/stats/base/dsnanmean/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ The function has the following parameters:
7070
- **x**: input [`Float32Array`][@stdlib/array/float32].
7171
- **strideX**: stride length for `x`.
7272

73-
<!-- eslint-disable max-len -->
74-
7573
The `N` and stride parameters determine which elements in the strided array are accessed at runtime. For example, to compute the [arithmetic mean][arithmetic-mean] of every other element in `x`,
7674

75+
<!-- eslint-disable max-len -->
76+
7777
```javascript
7878
var Float32Array = require( '@stdlib/array/float32' );
7979

@@ -85,7 +85,7 @@ var v = dsnanmean( 5, x, 2 );
8585

8686
Note that indexing is relative to the first index. To introduce an offset, use [`typed array`][mdn-typed-array] views.
8787

88-
<!-- eslint-disable stdlib/capitalized-comments, max len -->
88+
<!-- eslint-disable stdlib/capitalized-comments, max-len -->
8989

9090
```javascript
9191
var Float32Array = require( '@stdlib/array/float32' );

lib/node_modules/@stdlib/stats/base/dsnanmean/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2020 The Stdlib Authors.
4+
* Copyright (c) 2025 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)