From cff2552388dc1ca5a021baee3042d13534df4a6d Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Sun, 14 Jul 2024 02:38:55 +0000 Subject: [PATCH] Auto-generated commit --- CHANGELOG.md | 1 + base/special/acscd/src/main.c | 2 +- base/special/digamma/src/main.c | 6 +++--- base/special/fast/atanh/src/main.c | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 56d668248..2562f66d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5066,6 +5066,7 @@ A total of 29 people contributed to this release. Thank you to the following con
+- [`26337e1`](https://github.com/stdlib-js/stdlib/commit/26337e1644c963b8006e38c4b5e2ee74eac8e33f) - **docs:** fix return annotation tag in C comments _(by Philipp Burckhardt)_ - [`8558d86`](https://github.com/stdlib-js/stdlib/commit/8558d869aed0f22f0fbdcd54321c5058c954df89) - **feat:** add `math/base/special/fmod` [(##2562)](#2562) _(by Gunj Joshi)_ - [`e9d0de8`](https://github.com/stdlib-js/stdlib/commit/e9d0de8077f47e49ff703c1b106e262454e5d15d) - **chore:** update package meta data [(#2596)](https://github.com/stdlib-js/stdlib/pull/2596) _(by stdlib-bot, Athan Reines)_ - [`2e723fb`](https://github.com/stdlib-js/stdlib/commit/2e723fbb6e3acfca2d0d413c26c96a207a616636) - **feat:** add C implementation for `math/base/special/roundb` _(by Gunj Joshi, Philipp Burckhardt)_ diff --git a/base/special/acscd/src/main.c b/base/special/acscd/src/main.c index 7a7e326d6..7c63471e8 100644 --- a/base/special/acscd/src/main.c +++ b/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/base/special/digamma/src/main.c b/base/special/digamma/src/main.c index cd64ee465..70fdf933c 100644 --- a/base/special/digamma/src/main.c +++ b/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/base/special/fast/atanh/src/main.c b/base/special/fast/atanh/src/main.c index 696f06571..a814f378b 100644 --- a/base/special/fast/atanh/src/main.c +++ b/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 );