Skip to content

Commit 60159af

Browse files
committed
fix: resolve lint errors
1 parent a53b99a commit 60159af

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

lib/node_modules/@stdlib/constants/float32/max-ln/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ var FLOAT32_MAX_LN = require( '@stdlib/constants/float32/max-ln' );
3535
[Natural logarithm][natural-logarithm] of the maximum [single-precision floating-point number][ieee754].
3636

3737
```javascript
38-
var bool = ( FLOAT32_MAX_LN === 88.722839 );
38+
var bool = ( FLOAT32_MAX_LN === 88.72283935546875 );
3939
// returns true
4040
```
4141

@@ -55,7 +55,7 @@ var bool = ( FLOAT32_MAX_LN === 88.722839 );
5555
var FLOAT32_MAX_LN = require( '@stdlib/constants/float32/max-ln' );
5656

5757
console.log( FLOAT32_MAX_LN );
58-
// => 88.722839
58+
// => 88.72283935546875
5959
```
6060

6161
</section>
@@ -146,4 +146,4 @@ Macro for the [natural logarithm][natural-logarithm] of the maximum [single-prec
146146

147147
</section>
148148

149-
<!-- /.links -->
149+
<!-- /.links -->

lib/node_modules/@stdlib/constants/float32/max-ln/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
* @example
2828
* var FLOAT32_MAX_LN = require( '@stdlib/constants/float32/max-ln' );
29-
* // returns 88.722839
29+
* // returns 88.72283935546875
3030
*/
3131

3232
// MODULES //

lib/node_modules/@stdlib/constants/float32/max-ln/test/test.js

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

0 commit comments

Comments
 (0)