Skip to content

Commit 08d30ea

Browse files
Update lib/node_modules/@stdlib/math/base/special/lucasf/src/main.c
Co-authored-by: Karan Anand <[email protected]> Signed-off-by: Harsh <[email protected]>
1 parent 53b2641 commit 08d30ea

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/lucasf/src

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/math/base/special/lucasf/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,5 +75,5 @@ float stdlib_base_lucasf( const int32_t n ) {
7575
if ( n < 0 || n > STDLIB_CONSTANT_FLOAT32_MAX_SAFE_NTH_LUCAS ) {
7676
return 0.0f / 0.0f; // NaN
7777
}
78-
return lucasf_value[ n ];
78+
return lucas_value[ n ];
7979
}

0 commit comments

Comments
 (0)