Skip to content

Commit 91b610b

Browse files
committed
fix lint error
1 parent 14bb790 commit 91b610b

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/stats/incr/nanmminmax/lib

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/incr/nanmminmax/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ var incrmminmax = require( '@stdlib/stats/incr/mminmax' );
5656
* mm = accumulator();
5757
* // returns [ -5.0, 5.0 ]
5858
*/
59-
function incrmnanminmax(out, window) {
59+
function incrnanmminmax(out, window) {
6060
var minmax;
6161
if (arguments.length === 1) {
6262
minmax = incrmminmax( out );
@@ -83,4 +83,4 @@ function incrmnanminmax(out, window) {
8383

8484
// EXPORTS //
8585

86-
module.exports = incrmnanminmax;
86+
module.exports = incrnanmminmax;

0 commit comments

Comments
 (0)