Skip to content

Commit 4e91eaa

Browse files
authored
test: fix description
Signed-off-by: Athan <kgryte@gmail.com>
1 parent 6061140 commit 4e91eaa

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/constants/float32/fourth-root-eps/test

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/constants/float32/fourth-root-eps/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ tape( 'main export is a number', function test( t ) {
3535
t.end();
3636
});
3737

38-
tape( 'the exported value equals the fourth root of the difference between one and the smallest value greater than one which is representable as a double (2**-23)', function test( t ) {
38+
tape( 'the exported value equals the fourth root of the difference between one and the smallest value greater than one which is representable as a float (2**-23)', function test( t ) {
3939
var expected = sqrtf( sqrtf( float64ToFloat32( pow( 2, -23 ) ) ) );
4040
t.equal( FLOAT32_FOURTH_ROOT_EPS, expected, 'equals sqrtf( sqrtf(2**-23) )' );
4141
t.end();

0 commit comments

Comments
 (0)