Skip to content

Commit 829f160

Browse files
authored
docs: fix interpolation string
Signed-off-by: Athan <[email protected]>
1 parent 4141f9d commit 829f160

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/factorial2f/examples/c

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/math/base/special/factorial2f/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ int main( void ) {
2626
int i;
2727
for ( i = 0; i < 5; i++ ) {
2828
b = stdlib_base_factorial2f( x[ i ] );
29-
printf ( "factorial2f(%lf) = %f\n", x[ i ], b );
29+
printf ( "factorial2f(%f) = %f\n", x[ i ], b );
3030
}
3131
}

0 commit comments

Comments
 (0)