Skip to content

Commit a38a6bf

Browse files
committed
fix: update value
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: na - task: lint_repl_help status: passed - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed ---
1 parent 80acced commit a38a6bf

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

lib/node_modules/@stdlib/constants/float16/max-safe-fibonacci/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The maximum [safe][safe-integers] [Fibonacci number][fibonacci-number] when stor
3939
<!-- eslint-disable id-length -->
4040

4141
```javascript
42-
var bool = ( FLOAT16_MAX_SAFE_FIBONACCI === 46368 );
42+
var bool = ( FLOAT16_MAX_SAFE_FIBONACCI === 1597 );
4343
// returns true
4444
```
4545

lib/node_modules/@stdlib/constants/float16/max-safe-fibonacci/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-
46368
9+
1597
1010

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

lib/node_modules/@stdlib/constants/float16/max-safe-fibonacci/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 = FLOAT16_MAX_SAFE_FIBONACCI;
26-
* // returns 46368
26+
* // returns 1597
2727
*/
2828
declare const FLOAT16_MAX_SAFE_FIBONACCI: number;
2929

lib/node_modules/@stdlib/constants/float16/max-safe-fibonacci/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 FLOAT16_MAX_SAFE_FIBONACCI = require( '@stdlib/constants/float16/max-safe-fibonacci' );
29-
* // returns 46368
29+
* // returns 1597
3030
*/
3131

3232

@@ -37,11 +37,11 @@
3737
*
3838
* @constant
3939
* @type {integer}
40-
* @default 46368
40+
* @default 1597
4141
* @see [Fibonacci number]{@link https://en.wikipedia.org/wiki/Fibonacci_number}
4242
* @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985}
4343
*/
44-
var FLOAT16_MAX_SAFE_FIBONACCI = 46368; // eslint-disable-line id-length
44+
var FLOAT16_MAX_SAFE_FIBONACCI = 1597; // eslint-disable-line id-length
4545

4646

4747
// EXPORTS //

lib/node_modules/@stdlib/constants/float16/max-safe-fibonacci/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 46368', function test( t ) {
36-
t.strictEqual( FLOAT16_MAX_SAFE_FIBONACCI, 46368, 'returns expected value' );
35+
tape( 'the exported value is 1597', function test( t ) {
36+
t.strictEqual( FLOAT16_MAX_SAFE_FIBONACCI, 1597, 'returns expected value' );
3737
t.end();
3838
});

0 commit comments

Comments
 (0)