Skip to content

Commit 26337e1

Browse files
committed
docs: fix return annotation tag in C comments
1 parent 8558d86 commit 26337e1

File tree

3 files changed

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

3 files changed

+5
-5
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* Computes the arccosecant (in degrees) of a double-precision floating-point number.
2525
*
2626
* @param x input value
27-
* @returns arccosecant (in degrees)
27+
* @return arccosecant (in degrees)
2828
*
2929
* @example
3030
* double v = stdlib_base_acscd( 1.0 );

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ static double rational_pq( const double x ) {
111111
* Evaluates the digamma function via asymptotic expansion.
112112
*
113113
* @param x input value
114-
* @returns function value
114+
* @return function value
115115
*/
116116
static double asymptoticApprox( const double x ) {
117117
double y;
@@ -129,7 +129,7 @@ static double asymptoticApprox( const double x ) {
129129
* Evaluates the digamma function over interval `[1,2]`.
130130
*
131131
* @param x input value
132-
* @returns function value
132+
* @return function value
133133
*/
134134
static double rationalApprox( const double x ) {
135135
double g;
@@ -211,7 +211,7 @@ static double rationalApprox( const double x ) {
211211
* - Max error found: \\(2.452\mbox{e-}17\\) (double precision)
212212
*
213213
* @param x input value
214-
* @returns function value
214+
* @return function value
215215
*
216216
* @example
217217
* double v = stdlib_base_digamma( -2.5 );

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* Computes the hyperbolic arctangent of a number.
2727
*
2828
* @param x input value
29-
* @returns hyperbolic arctangent (in radians)
29+
* @return hyperbolic arctangent (in radians)
3030
*
3131
* @example
3232
* double v = stdlib_base_fast_atanh( 0.0 );

0 commit comments

Comments
 (0)