Skip to content

Commit c08b5f1

Browse files
authored
chore: fix JavaScript lint errors
PR-URL: stdlib-js#8243 Closes: stdlib-js#8241 Reviewed-by: Athan Reines <[email protected]>
1 parent f9011e1 commit c08b5f1

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/utils/type-max/examples

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/utils/type-max/examples/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ var typemax = require( './../lib' );
2222

2323
var m = typemax( 'float64' );
2424
console.log( m );
25-
// => +infinity
25+
// => Infinity
2626

2727
m = typemax( 'float32' );
2828
console.log( m );
29-
// => +infinity
29+
// => Infinity
3030

3131
m = typemax( 'float16' );
3232
console.log( m );
33-
// => +infinity
33+
// => Infinity
3434

3535
m = typemax( 'int32' );
3636
console.log( m );

0 commit comments

Comments
 (0)