Skip to content

Commit 2789eff

Browse files
authored
docs: fix function name in README example
PR-URL: #2506 Reviewed-by: Athan Reines <[email protected]>
1 parent a61b40c commit 2789eff

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/math/base/special/gamma-lanczos-sum

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/math/base/special/gamma-lanczos-sum/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,8 @@ int main( void ) {
178178
double y;
179179
int i;
180180
for ( i = 0; i < 4; i++ ) {
181-
y = stdlib_base_gamm_lanczos_sum( x[ i ] );
182-
printf( "gamm_lanczos_sum(%lf) = %lf\n", x[ i ], y );
181+
y = stdlib_base_gamma_lanczos_sum( x[ i ] );
182+
printf( "gamma_lanczos_sum(%lf) = %lf\n", x[ i ], y );
183183
}
184184
}
185185
```

0 commit comments

Comments
 (0)