From 26337e1644c963b8006e38c4b5e2ee74eac8e33f Mon Sep 17 00:00:00 2001 From: Philipp Burckhardt Date: Sat, 13 Jul 2024 22:34:53 -0400 Subject: [PATCH] docs: fix return annotation tag in C comments --- lib/node_modules/@stdlib/math/base/special/acscd/src/main.c | 2 +- .../@stdlib/math/base/special/digamma/src/main.c | 6 +++--- .../@stdlib/math/base/special/fast/atanh/src/main.c | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/acscd/src/main.c b/lib/node_modules/@stdlib/math/base/special/acscd/src/main.c index 7a7e326d65d..7c63471e8f7 100644 --- a/lib/node_modules/@stdlib/math/base/special/acscd/src/main.c +++ b/lib/node_modules/@stdlib/math/base/special/acscd/src/main.c @@ -24,7 +24,7 @@ * Computes the arccosecant (in degrees) of a double-precision floating-point number. * * @param x input value -* @returns arccosecant (in degrees) +* @return arccosecant (in degrees) * * @example * double v = stdlib_base_acscd( 1.0 ); diff --git a/lib/node_modules/@stdlib/math/base/special/digamma/src/main.c b/lib/node_modules/@stdlib/math/base/special/digamma/src/main.c index cd64ee4659a..70fdf933cce 100644 --- a/lib/node_modules/@stdlib/math/base/special/digamma/src/main.c +++ b/lib/node_modules/@stdlib/math/base/special/digamma/src/main.c @@ -111,7 +111,7 @@ static double rational_pq( const double x ) { * Evaluates the digamma function via asymptotic expansion. * * @param x input value -* @returns function value +* @return function value */ static double asymptoticApprox( const double x ) { double y; @@ -129,7 +129,7 @@ static double asymptoticApprox( const double x ) { * Evaluates the digamma function over interval `[1,2]`. * * @param x input value -* @returns function value +* @return function value */ static double rationalApprox( const double x ) { double g; @@ -211,7 +211,7 @@ static double rationalApprox( const double x ) { * - Max error found: \\(2.452\mbox{e-}17\\) (double precision) * * @param x input value -* @returns function value +* @return function value * * @example * double v = stdlib_base_digamma( -2.5 ); diff --git a/lib/node_modules/@stdlib/math/base/special/fast/atanh/src/main.c b/lib/node_modules/@stdlib/math/base/special/fast/atanh/src/main.c index 696f06571aa..a814f378b4b 100644 --- a/lib/node_modules/@stdlib/math/base/special/fast/atanh/src/main.c +++ b/lib/node_modules/@stdlib/math/base/special/fast/atanh/src/main.c @@ -26,7 +26,7 @@ * Computes the hyperbolic arctangent of a number. * * @param x input value -* @returns hyperbolic arctangent (in radians) +* @return hyperbolic arctangent (in radians) * * @example * double v = stdlib_base_fast_atanh( 0.0 );