Skip to content

Commit f39b4f3

Browse files
committed
fix: fixes suggested changes
1 parent f5a2531 commit f39b4f3

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ var FLOAT32_MAX_SAFE_LUCAS = require( '@stdlib/constants/float32/max-safe-lucas'
3535
The maximum [safe][safe-integers] [Lucas number][lucas-number] when stored in [single-precision floating-point][ieee754] format.
3636

3737
```javascript
38-
var bool = ( FLOAT32_MAX_SAFE_LUCAS === 1197222447 );
38+
var bool = ( FLOAT32_MAX_SAFE_LUCAS === 12752043 );
3939
// returns true
4040
```
4141

lib/node_modules/@stdlib/constants/float32/max-safe-lucas/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Examples
77
--------
88
> {{alias}}
9-
1197222447
9+
12752043
1010

1111
See Also
1212
--------

lib/node_modules/@stdlib/constants/float32/max-safe-lucas/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*
2424
* @example
2525
* var max = FLOAT32_MAX_SAFE_LUCAS;
26-
* // returns 1197222447
26+
* // returns 12752043
2727
*/
2828
declare const FLOAT32_MAX_SAFE_LUCAS: number;
2929

lib/node_modules/@stdlib/constants/float32/max-safe-lucas/include/stdlib/constants/float32/max_safe_lucas.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@
2222
/**
2323
* Macro for the maximum safe Lucas number when stored in single-precision floating-point format.
2424
*/
25-
#define STDLIB_CONSTANT_FLOAT32_MAX_SAFE_LUCAS 1197222447f
25+
#define STDLIB_CONSTANT_FLOAT32_MAX_SAFE_LUCAS 12752043f
2626

2727
#endif // !STDLIB_CONSTANTS_FLOAT32_MAX_SAFE_LUCAS_H

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
* @example
2828
* var FLOAT32_MAX_SAFE_LUCAS = require( '@stdlib/constants/float32/max-safe-lucas' );
29-
* // returns 1197222447
29+
* // returns 12752043
3030
*/
3131

3232

@@ -37,11 +37,11 @@
3737
*
3838
* @constant
3939
* @type {integer}
40-
* @default 1197222447
40+
* @default 12752043
4141
* @see [Lucas number]{@link https://en.wikipedia.org/wiki/Lucas_number}
4242
* @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985}
4343
*/
44-
var FLOAT32_MAX_SAFE_LUCAS = 1197222447;
44+
var FLOAT32_MAX_SAFE_LUCAS = 12752043;
4545

4646

4747
// EXPORTS //

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ tape( 'main export is a number', function test( t ) {
3232
t.end();
3333
});
3434

35-
tape( 'the exported value is 1197222447', function test( t ) {
36-
t.strictEqual( FLOAT32_MAX_SAFE_LUCAS, 1197222447, 'returns expected value' );
35+
tape( 'the exported value is 12752043', function test( t ) {
36+
t.strictEqual( FLOAT32_MAX_SAFE_LUCAS, 12752043, 'returns expected value' );
3737
t.end();
3838
});

0 commit comments

Comments
 (0)