Skip to content

Commit 4141f9d

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

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/math/base/special/factorial2f/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ int main( void ) {
177177
int i;
178178
for ( i = 0; i < 5; i++ ) {
179179
b = stdlib_base_factorial2f( x[ i ] );
180-
printf ( "factorial2f(%lf) = %f\n", x[ i ], b );
180+
printf ( "factorial2f(%f) = %f\n", x[ i ], b );
181181
}
182182
}
183183
```

0 commit comments

Comments
 (0)