Skip to content

Commit 4a70444

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent 81e8b1e commit 4a70444

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/stats/base/nanmax-by

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/nanmax-by/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var nanmaxBy = require( '@stdlib/stats/base/nanmax-by' );
3232

3333
#### nanmaxBy( N, x, strideX, clbk\[, thisArg] )
3434

35-
Computes the maximum value of strided array via a callback function, ignoring `NaN` values.
35+
Computes the maximum value of a strided array via a callback function, ignoring `NaN` values.
3636

3737
```javascript
3838
function accessor( v ) {
@@ -116,7 +116,7 @@ var v = nanmaxBy( 3, x1, 2, accessor );
116116

117117
#### nanmaxBy.ndarray( N, x, strideX, offsetX, clbk\[, thisArg] )
118118

119-
Computes the maximum value of strided array via a callback function, ignoring `NaN` values and using alternative indexing semantics.
119+
Computes the maximum value of a strided array via a callback function, ignoring `NaN` values and using alternative indexing semantics.
120120

121121
```javascript
122122
function accessor( v ) {

0 commit comments

Comments
 (0)