Skip to content

Commit 82f78f2

Browse files
authored
docs: update function description comments in math/base/special/betaln
PR-URL: #2766 --------- Signed-off-by: Gunj Joshi <[email protected]> Reviewed-by: Philipp Burckhardt <[email protected]>
1 parent 02d4c8a commit 82f78f2

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

lib/node_modules/@stdlib/math/base/special/betaln/include/stdlib/math/base/special/betaln.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extern "C" {
2727
#endif
2828

2929
/**
30-
* Evaluate the natural logarithm of the beta function.
30+
* Evaluates the natural logarithm of the beta function.
3131
*/
3232
double stdlib_base_betaln( const double x, const double y );
3333

lib/node_modules/@stdlib/math/base/special/betaln/lib/dceval.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ var LEN = ALGMCS.length;
5050
// MAIN //
5151

5252
/**
53-
* Evaluate the n-term Chebyshev series at `x`.
53+
* Evaluates the n-term Chebyshev series at `x`.
5454
*
5555
* ## References
5656
*

lib/node_modules/@stdlib/math/base/special/betaln/lib/gamma_correction.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var XMAX = 3.745194030963158e306;
4040
// MAIN //
4141

4242
/**
43-
* Compute the log gamma correction factor for `x >= 10`.
43+
* Computes the log gamma correction factor for `x >= 10`.
4444
*
4545
* ```tex
4646
* \log(\gamma(x)) = \log(\sqrt{2*\Pi}) + (x-0.5) \cdot \log(x) - x \operatorname{R9LGMC}(x).

lib/node_modules/@stdlib/math/base/special/betaln/lib/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ var correction = require( './gamma_correction.js' );
4242
// MAIN //
4343

4444
/**
45-
* Evaluate the natural logarithm of the beta function.
45+
* Evaluates the natural logarithm of the beta function.
4646
*
4747
* @param {NonNegativeNumber} a - first input value
4848
* @param {NonNegativeNumber} b - second input value

lib/node_modules/@stdlib/math/base/special/betaln/lib/native.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var addon = require( './../src/addon.node' );
2626
// MAIN //
2727

2828
/**
29-
* Evaluate the natural logarithm of the beta function.
29+
* Evaluates the natural logarithm of the beta function.
3030
*
3131
* @private
3232
* @param {NonNegativeNumber} a - first input value

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ static const double XBIG = 94906265.62425156;
5858
static const double XMAX = 3.745194030963158e306;
5959

6060
/**
61-
* Evaluate the n-term Chebyshev series at `x`.
61+
* Evaluates the n-term Chebyshev series at `x`.
6262
*
6363
* ## References
6464
*
@@ -90,7 +90,7 @@ static double dceval( const double x ) {
9090
}
9191

9292
/**
93-
* Compute the log gamma correction factor for `x >= 10`.
93+
* Computes the log gamma correction factor for `x >= 10`.
9494
*
9595
* ```tex
9696
* \log(\gamma(x)) = \log(\sqrt{2*\Pi}) + (x-0.5) \cdot \log(x) - x \operatorname{R9LGMC}(x).
@@ -115,7 +115,7 @@ static double gammaCorrection( const double x ) {
115115
}
116116

117117
/**
118-
* Evaluate the natural logarithm of the beta function.
118+
* Evaluates the natural logarithm of the beta function.
119119
*
120120
* @param a first input value
121121
* @param b second input value

0 commit comments

Comments
 (0)