Skip to content

Commit 6f279ec

Browse files
chore: update return value
1 parent d88b9d9 commit 6f279ec

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Maximum [safe][safe-integers] nth [Tribonacci number][tribonacci-number] when st
3939
<!-- eslint-disable id-length -->
4040

4141
```javascript
42-
var bool = ( FLOAT32_MAX_SAFE_NTH_TRIBONACCI === 35 );
42+
var bool = ( FLOAT32_MAX_SAFE_NTH_TRIBONACCI === 30 );
4343
// returns true
4444
```
4545

lib/node_modules/@stdlib/constants/float32/max-safe-nth-tribonacci/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-
35
9+
30
1010

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

lib/node_modules/@stdlib/constants/float32/max-safe-nth-tribonacci/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_NTH_TRIBONACCI;
26-
* // returns 35
26+
* // returns 30
2727
*/
2828
declare const FLOAT32_MAX_SAFE_NTH_TRIBONACCI: number;
2929

lib/node_modules/@stdlib/constants/float32/max-safe-nth-tribonacci/include/stdlib/constants/float32/max_safe_nth_tribonacci.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@
2222
/**
2323
* Maximum safe nth Tribonacci number when stored in single-precision floating-point format.
2424
*/
25-
#define STDLIB_CONSTANT_FLOAT32_MAX_SAFE_NTH_TRIBONACCI 35
25+
#define STDLIB_CONSTANT_FLOAT32_MAX_SAFE_NTH_TRIBONACCI 30
2626

2727
#endif // !STDLIB_CONSTANTS_FLOAT32_MAX_SAFE_NTH_TRIBONACCI_H

lib/node_modules/@stdlib/constants/float32/max-safe-nth-tribonacci/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_NTH_TRIBONACCI = require( '@stdlib/constants/float32/max-safe-nth-tribonacci' );
29-
* // returns 35
29+
* // returns 30
3030
*/
3131

3232

@@ -37,11 +37,11 @@
3737
*
3838
* @constant
3939
* @type {integer}
40-
* @default 35
40+
* @default 30
4141
* @see [Tribonacci number]{@link https://en.wikipedia.org/wiki/Tribonacci_number}
4242
* @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985}
4343
*/
44-
var FLOAT32_MAX_SAFE_NTH_TRIBONACCI = 35|0; // eslint-disable-line id-length
44+
var FLOAT32_MAX_SAFE_NTH_TRIBONACCI = 30|0; // eslint-disable-line id-length
4545

4646

4747
// EXPORTS //

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

0 commit comments

Comments
 (0)