Skip to content

Commit 53eb98c

Browse files
authored
docs: fix function name
PR-URL: #2579 Reviewed-by: Athan Reines <[email protected]> Signed-off-by: GUNJ JOSHI <[email protected]>
1 parent b4cde28 commit 53eb98c

File tree

1 file changed

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

1 file changed

+4
-4
lines changed

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -129,15 +129,15 @@ for ( i = 0; i < x.length; i++ ) {
129129
#include "stdlib/math/base/special/gamma_lanczos_sum.h"
130130
```
131131

132-
#### gamma_lanczos_sum( x )
132+
#### stdlib_base_gamma_lanczos_sum( x )
133133

134134
Calculates the Lanczos sum for the approximation of the [gamma function][gamma-function].
135135

136136
```c
137-
double out = gamma_lanczos_sum( 4.0 );
137+
double out = stdlib_base_gamma_lanczos_sum( 4.0 );
138138
// returns ~950.366
139139

140-
out = gamma_lanczos_sum( -1.5 );
140+
out = stdlib_base_gamma_lanczos_sum( -1.5 );
141141
// returns ~1373366.245
142142
```
143143

@@ -146,7 +146,7 @@ The function accepts the following arguments:
146146
- **x**: `[in] double` input value.
147147

148148
```c
149-
double gamma_lanczos_sum( const double x );
149+
double stdlib_base_gamma_lanczos_sum( const double x );
150150
```
151151
152152
</section>

0 commit comments

Comments
 (0)