Skip to content

Commit 09cd1c6

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent 620386c commit 09cd1c6

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

lib/node_modules/@stdlib/stats/incr/nanmeanabs/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ var incrnanmeanabs = require( '@stdlib/stats/incr/nanmeanabs' );
5353

5454
#### incrnanmeanabs()
5555

56-
Returns an accumulator `function` which incrementally computes an [arithmetic mean][arithmetic-mean] of absolute values, ignoring `NaN` values.
56+
Returns an accumulator function which incrementally computes an [arithmetic mean][arithmetic-mean] of absolute values, ignoring `NaN` values.
5757

5858
```javascript
5959
var accumulator = incrnanmeanabs();
@@ -112,7 +112,6 @@ var accumulator = incrnanmeanabs();
112112

113113
// For each simulated datum, update the mean...
114114
var i;
115-
116115
for ( i = 0; i < 100; i++ ) {
117116
accumulator( ( bernoulli( 0.8 ) < 1 ) ? NaN : uniform( -100.0, 100.0 ) );
118117
}

lib/node_modules/@stdlib/stats/incr/nanmeanabs/docs/types/index.d.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818

1919
// TypeScript Version: 4.1
2020

21-
/// <reference types="@stdlib/types"/>
22-
2321
/**
2422
* If provided a value, returns an updated arithmetic mean; otherwise, returns the current arithmetic mean.
2523
*

0 commit comments

Comments
 (0)